svn - Can't push git commit to remote branch after stg import -
i can't seem commit change in local branch remote branch.
the local branch (26f) tracking remote branch (origin/fixes/0.26) on github via ssh.
i imported change using stg import commited fix local branch shown git status:
git status # on branch 26f # branch ahead of 'origin/fixes/0.26' 1 commit. # (use "git push" publish local commits) # nothing commit, working directory clean
but, when run git push, says there nothing push:
git push up-to-date
per "tracking branches" section of http://www.git-scm.com/book/en/git-branching-remote-branches git push should work states "if you’re on tracking branch , type git push, git automatically knows server , branch push to"
was getting error git 1.7.3.4. have upgraded 1.8.3.2 , seeing same problem.
so appears have worked:
git push git@github.com:me/it.git 26f:fixes/0.26
but still seems contradict "tracking branches" section of http://www.git-scm.com/book/en/git-branching-remote-branches
Comments
Post a Comment