() Xiangfu Liu <xiangf...@gmail.com> () Tue, 15 Jun 2010 22:41:35 +0800
git is offline version control. so if you committed in local several times, when you git push. it will push all of your committed to server. hopt this can help. Thanks. I think i should have done a "git rebase" prior to "git push" in order to isolate the one commit that i wanted to share. In the meanwhile, i have also done: $ git push -v origin ttn/misc-maint Pushing to ssh://t...@git.sv.gnu.org/srv/git/guile.git Enter passphrase for key '/home/ttn/.ssh/sv': Total 0 (delta 0), reused 0 (delta 0) To ssh://t...@git.sv.gnu.org/srv/git/guile.git * [new branch] ttn/misc-maint -> ttn/misc-maint updating local tracking ref 'refs/remotes/origin/ttn/misc-maint' I think it is ok for the branch ‘ttn/misc-maint’ to have many different commits. So now i would like to undo the damage on "master". I think only a project administrator is able to do that, however... thi