我遇到了Git的问题,我已经切换到一个新的分支并提交了我的更改但是新的分支没有显示在分支列表中。
git checkout -b new-branch
git branch
develop
*new-branch
git commit -am 'new message'
git push -u origin new-branch
git branch -a
[here the new branch does not show]
git checkout origin/new-branch
error: pathspec 'origin/new-branch' did not match any file(s) known to git.
我缺少一步吗?
我想我可能找到了答案,我需要更新我的遥控器列表
git remote update
但这也可能是因为我没有在最新的提交中添加任何文件。您可以检查要使用的文件
git status
然后,如果要添加.gitignore
未忽略的所有内容,则只需从代码根目录运行即可。
git add .