Problem when performing branch checkout - Bitbucket

0

I created a branch on bitbucket and I can not checkout it. The command I usually use is:

git fetch & git checkout

I type the command in the local terminal and it simply checks the branch, it continues in the master.

NoticethatI'mstillinthe"branch" master. I've tried doing this on different stations and the same thing happens.

Branchs on bitbucket:

    
asked by anonymous 29.06.2017 / 00:18

1 answer

2

It gives a "git status" to see if there is any file without commit, git will not let you checkout with files without commit. Another tip is to just give the git checkout, the "git fetch & git checkout" command prevents the second command from executing if the first one gives an error.

    
18.07.2017 / 15:50