Created
April 22, 2013 17:13
-
-
Save sycobuny/5436818 to your computer and use it in GitHub Desktop.
Git had a weird little hiccup, and I'm wondering what could have caused it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git status | |
# On branch master | |
# Your branch is behind 'origin/master' by 19 commits, and can be fast-forwarded. | |
# | |
nothing to commit (working directory clean) | |
$ git pull origin master | |
[output snipped] | |
$ git status | |
# On branch master | |
# Your branch is ahead of 'origin/master' by 1 commit. | |
# | |
nothing to commit (working directory clean) | |
$ git log origin/master..master | |
[no output] | |
$ git status # maybe I'm seeing things? | |
# On branch master | |
# Your branch is ahead of 'origin/master' by 1 commit. | |
# | |
$ git push origin master | |
Everything up-to-date | |
$ git status | |
# On branch master | |
nothing to commit (working directory clean) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment