I have got a strange error occurring on my git project.
liam@development ~/android/system/system/core $ git push git@development:android.git/platform/system/core.git gingerbread-release-om
Everything up-to-date
liam@development ~/android/system/system/core $ git status
# On branch gingerbread-release-om
# Your branch is ahead of 'development/gingerbread-release-om' by 1 commit.
#
nothing to commit (working directory clean)
liam@development ~/android/system/system/core $
Does anyone know why this would be happening?
Edit:
liam@development ~/android/system/system/core $ git remote -v
development git@development:android/platform/system/core (fetch)
development git@development:android/platform/system/core (push)
Edit 2: (I can’t answer my own question yet)
Ok, i now know the issue. My network administrator had “Fixed” a bug in the git web by adding .git to root of the android repo. This was done after I had sync’d my local source tree. The remote should now read
To fix this i needed to run
To fix my entire android source tree a ran
from the root of source tree. Got a little bit extra in there for clarity of the change.
Once fixed I ran:
Sorted!