I have a Master branch and another branch with name "newlogin-feature" which is created from Master branch two months back. Other code was pushed to master branch
Recently I was trying to have both the branches to be in sync. From my branch "newlogin-feature" I did
git pull origin master
It made merge by recursive strategy.
* branch master -> FETCH_HEAD
Merge made by the 'recursive' strategy.
It pulled few files and showed from master
.
Now when I do
git status
I do not see any files to be committed. It says
HEAD detached from origin/newlogin-feature
The above is the general practice I do, but now I do not have anything to commit.