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?
source
share