I made a local git repo(git init), and made some commits in it.
Then I made a repo on github and made my local repo colaborate with it:
git remote add origin url-of-my-remote-gitrepo
I pushed the local commits to remote git repo:
git push origin master
Now I cloned remote git repo into another directory on my computer.
So now I have two local git repos associated with same remote repo.
When I do:
git log --decorate
First repo shows all branches I made and origin/master.But second one shows origin/HEAD also.
Whys is this the case?