I setup my master dropbox repo following the instruction found: http://tumblr.intranation.com/post/766290743/using-dropbox-git-repository. I was able to create the remote and clone the repo to another computer without any problems.
Now I commit a change in computer B and push it to the dropbox master by
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 in computer A I do
git pull dropbox master
It shows that it's updated, but I didn't see the changes in the files that i modified? What am i doing wrong here?