What are those red remote branches on Git?
问题 I'm new to git and trying to set up a repository. I got two branches ( master and xyz ). My workflow so far: change to specific branch, e.g. git checkout xyz make changes git add . git commit -am 'whatevermessage' git push origin xyz Everything works so far. But when I git branch -a to view all my branches, I get the following output: master * xyz remotes/origin/master remotes/origin/xyz while remotes/origin/master and remotes/origin/xyz are displayed in red color. I tried to figure out what