How to synchronize / update files using the git wizard stored in Dropbox among different computers?

I install my dropbox master repository according to the instructions found: http://tumblr.intranation.com/post/766290743/using-dropbox-git-repository . I was able to create a remote and clone the repo on another computer without any problems.

Now I commit the change to computer B and click on the dropbox wizard to

    git commit -m "test to see dropbox repo works"  % commit changes to local repo

    git push dropbox master % push to remote master located in the dropbox folder

then on computer A I do

    git pull dropbox master 

It shows that it is updated, but I did not see the changes in the files that I changed? What am I doing wrong here?

+3
source share
1 answer

pull , , , . pull fetch, merge:

git fetch dropbox
(if you are not already on master) git checkout master
git merge dropbox/master

, fetch merge log , :

git log dropbox/master

'entry notuptodate', Git pull: error: Entry foo not uptodate. .

0

All Articles