2
I’m trying to give a git init
in my project, it returns successfully:
Initialized empty Git repository in C:/myprojetPath/.git/
But because when I type git branch
, it returns no branch?
$ git branch
(Não retorna nenhum branch)
myuser@WKS054 MINGW64 myprojetPath (master)
$
But on my terminal (Git bash, actually) it shows that I’m on the master branch.
But when I switch branches, I can’t get back to the master branch with git checkout master
, it informs that the branch does not exist
I think that’s right, I gave the first commit, now this all normal! thank you very much
– Lai32290