Created
February 9, 2014 22:39
Strange git case sensitivity issue on OS/X
This file contains 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 branch -vv --no-merged | |
feature/JDK8 8e89521 First steps to JDK8 | |
feature/jdk8 da4efaa WIP JDK8 Streams/Lambda Migration | |
$ git checkout feature/JDK8 | |
Switched to branch 'feature/JDK8' | |
$ git checkout feature/jdk8 | |
Switched to branch 'feature/jdk8' | |
$ git log feature/jdk8 | |
commit da4efaad69e0e7c2aa8e15f9a9a7c897e82d84e9 | |
Author: Mark Derricutt <mark@talios.com> | |
Date: Sun Jan 19 23:22:27 2014 +1300 | |
WIP JDK8 Streams/Lambda Migration | |
... | |
$ git log feature/JDK8 | |
commit da4efaad69e0e7c2aa8e15f9a9a7c897e82d84e9 | |
Author: Mark Derricutt <mark@talios.com> | |
Date: Sun Jan 19 23:22:27 2014 +1300 | |
WIP JDK8 Streams/Lambda Migration | |
... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment