Why is HEAD ahead of the wizard?

I have HEAD and my source / master is synchronized, but my master is behind two commits. A call to git branch -a shows that I am disconnected from 16e6202 (master). Can someone explain what this means?

* e3acad6 (HEAD, origin/master) 14-delete task feature added
* 26641b1 13-edit task feature added
* 16e6202 (master) 12-full tasks example from beginning

How can I reconnect HEAD with the master?

+3
source share
1 answer

You checked origin/master, so you have a separate head, which means that you are not in the local branch. You need to check masteragain to enter this thread again.

git checkout master
git merge origin/master --ff-only
+6
source

All Articles