新提交的Git分支没有显示

时间:2014-07-18 14:21:28

标签: git branch git-commit git-checkout

我遇到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.

我缺少一步吗?

1 个答案:

答案 0 :(得分:0)

我想我可能找到了答案,我需要更新我的遥控器列表

git remote update

但这也可能是因为我没有在最新的提交中添加任何文件。您可以使用

检查要提交的文件
git status

然后,如果要添加.gitignore未忽略的所有内容,则只需从代码根目录运行即可。

git add .