I have a branch testbranch created from master via GIT GUI. Currently I am on master on GIT command line.
when I say "git branch -b testbranch"
and "git checkout testbranch"
, it says it switched to the testbranch
but the files are not updated. I don't know why this strange behavior.
Also what is difference between git branch testbranch
and git branch -b testbranch
.