I was fooling around in GitEye by mistake i double clicked on a tag. And my repository checked out to that particular tag and
git status
give the following output
HEAD detached at added-MySQL-cnf
. I just want to go back to my master
branch. I followed this link and created a new tmp
branch. Now when i execute git checkout master
which should checkout to master
branch it says.
git checkout master
error: The following untracked working tree files would be overwritten by checkout:
docs/make.bat
scripts/mysql_backup.bat
scripts/run.bat
Please move or remove them before you can switch branches.
Aborting
git status
On branch tmp
Untracked files:
(use "git add <file>..." to include in what will be committed)
../docs/
../scripts/
nothing added to commit but untracked files present (use "git add" to track)
and
git stash
No local changes to save
I have no idea what to do. Can please someone help me i just want to go back to my master branch
.