Im starting to learn to use git, and I am having a situation that I dont understand (the repository was taken out of svn)
Im on a branch jacob@379
with everything committed:
host$ git status
# On branch jacob@379
nothing to commit (working directory clean)
Try to do a merge to the master:
host:$ git merge master
Already up-to-date.
Which is confusing because the diff says there are differences!
host$ git diff master..jacob@379
warning: refname 'jacob@379' is ambiguous.
diff --git a/.classpath b/.classpath
index 8ba1225..5af1151 100644
--- a/.classpath
+++ b/.classpath
@@ -10,6 +10,11 @@
....
What is going on?