Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I cannot seem to find an answer or even any related material to this question via Google, stackoverflow etc.

I've recently started using Git. I created a Git repo on my local machine, and also set up a remote repo on Bitbucket. I added the Bitbucket repo as a remote on my local Git repo, and committed and pushed the contents of local repo. No probs so far, all the files and directories appeared in Bitbucket repo.

I then made some changes locally - I created a directory and moved two existing directories into it. I then committed the changes and pushed to Bitbucket.

The problem is that my Bitbucket repository, as well as correctly moving the directories into the new directory, also kept copies of them in their old location. Why is this?

Thanks

share|improve this question
1  
When you committed locally, did you commit the 'delete' of the files from the old directories, or only the 'add' to the new directories? – chamila_c Dec 3 '12 at 10:36
Hi Chamila - I just did "git add ." then "git commit... " – Jon Dec 3 '12 at 10:40
I though Git would automatically factor in the delete – Jon Dec 3 '12 at 10:41
Run a "git status" and see what comes up – chamila_c Dec 3 '12 at 10:42
Just googled "git delete" and apparently if I run "git add -u" it will take into account all deleted, modified and new files! Nice :) – Jon Dec 3 '12 at 10:46

1 Answer

up vote 1 down vote accepted

Rather than a git add -u (see "What's the difference between git add . and git add -u?"), I would recommend a git mv when you want to move resources in a git repository.

See "What's the purpose of git-mv?".

share|improve this answer
Nice. Thanks Von! – Jon Dec 3 '12 at 15:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.