Github is acknowledging my commit but ignoring my push?
I made some changes and commited them. GitHub acknowledged accordingly, but git push
returns everything up-to-date.
. I h开发者_StackOverflow社区ave tried using the full repo path as well.
Try:
git branch
#Shows your current branch, let's say $BRANCH
git push origin $BRANCH
I ended up forcing the push. It broke sone stuff but put my history where it should have been.
精彩评论