Ok, hopefully this should be easy for you. I'm new to git, BitBucket and somewhat new to version control too, I'm going to be missing something obvious to you.
So here's what I've done: I've installed git on my machine and set my globals. Set up a new repo on BitBucket. Then:
$ git clone https://[me]@bitbucket.org/[me]/[my_project].git
Cloning into [my_project]...
Password:
warning: You appear to have cloned an empty repository.
$ git status
# On branch master
#
# Initial commit
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# index.html
nothing added to commit but untracked files present (use "git add" to track)
Done. Then I create a new file (index.html) locally. Then:
$ git add index.html
$ git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: index.html
#
So added successfully. Then:
$ git commit -m "Initial commit."
[master (root-commit) 01d4120] Initial commit.
1 files changed, 164 insertions(+), 0 deletions(-)
create mode 100755 index.html
Committed successfully.
$ git push
Password:
Everything up-to-date
I enter my password aaaaaand... Everything up-to-date... It doesn't push. I just want to push straight to the remote trunk from my local trunk.
I'm sorry if this is really obvious but I'm so new to everything I can't seem to find any info, I was just working through the 'BitBucket 101' steps. Thanks.