在我使用gitlab之前,我是github的新手
我创建了一个分支fea-test
并推送到远程存储库,然后我在同一个远程分支fea-test
中添加了一些文件,当我在git状态时添加了
Your branch is up to date with 'origin/fea-test'.
nothing to commit, working tree clean
据我说它应该显示一些像
这样的东西Your branch is behind with 'origin/fea-test'.
use git pull to get the changes
因为这就是gitlab中的情况,所以我很困惑这里有什么我做错了
答案 0 :(得分:1)
要清楚,请检查您执行的这些步骤:
git status
,并希望列出新创建的文件/提交。如果我是对的,那么你必须git fetch
来自GitHub的更改(因此Your branch is behind of 'origin/fea-test' by XY commits
将显示在状态中)或使用git pull
来获取+合并这些(所以你的本地分支机构将更新)。