For some commits in our repo (but not for everyone), if I check the commit and then return to the main branch, I get an unexpected warning that the commits remain:
# Check out one of the commits in question: $ git checkout dd33caa5b004b0e3bd449152f9335e40450db91c Note: checking out 'dd33caa5b004b0e3bd449152f9335e40450db91c'. You are in 'detached HEAD' state. You can look around, make experimental [...] HEAD is now at dd33caa... Organized DataStore build files, added cleanup targets.
All the commits in question (as far as I can tell) are accessible from the master, and I didn’t make any commits during the state of a separate head (this is a pure clone of our repository). The history of the lead branch is as follows:
* 04d7fcc (HEAD, origin/master, origin/HEAD, master) Removed files from DataS * ecaa2f5 Fixed .gitignore. * dd33caa Organized DataStore build files, added cleanup targets. * 4916eec Fixes to C++ codegen to use maven features. * a26291d Merge branch 'master' of [redacted] |\ | * 93ae0b9 Add protobuf 2.4.1 jar file to install scripts. Add QTDIR to buil | * 3cba845 switched to protobug 2.4.1 jar files | * 1046d22 fixed GATEWAY_ROOT | * ebcda06 edit windows build scripting path for new repo location | * bda1e17 add windows build scripts from old repo * | 371883d Merge branch 'master' of [redacted] |\ \ | |/ | * 771c579 Fix MCast and RMCast service names in gateway manager config * | 864fb25 First cut at DataStore code generation update to sync with refact |/ * f505e46 Testing new repository * 111d89a Merge branch 'master' of [redacted]
Any idea what could be happening here? It seems that it is connected to one specific user, and I can play it using Git 1.7.9.6 on OSX and Git 1.7.9.5 on Ubuntu, but not from 1.8.0 on Ubuntu ... so a Git error, maybe? I don't see anything in the release notes, though ...
source share