我的本地 git 存储库中有以下提交结构:
branch-feature1
|
|-> commit3 -> commit4
|
commit1 -> commit2
|
|-> commit5 -> commit6
|
branch-feature2
1)我是否认为当我运行时git push remote branch-feature1
,只有从 commit1 到 commit4 的提交会同步到远程存储库,而 commmit5 和 commit6 会被忽略?
2) 现在假设我在远程存储库中具有上述相同的提交结构。我是否认为当我运行“git fetch remote”时,我会将所有 6 个提交同步到我的本地存储库?