私はブランチbranch_A
とbranch_B
を持つローカルABCにいるとします。 repo_A
からGit、リモートにプッシュ
、間の相違点ものです:
- git push origin
- git push origin branch_A
- git push origin branch_A:branch_A
質問の理由は、次の一連のイベントでは、私は驚くべきことを見つける:
11:05:56 ~/blah $ git push origin
Counting objects: 31, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (13/13), done.
Writing objects: 100% (17/17), 1.28 KiB, done.
Total 17 (delta 10), reused 0 (delta 0)
To ssh://[email protected]/myrepo.git
141fc0d..d42c3b6 branch_B -> branch_B // While i was in branch_A
11:06:02 ~/blah $ git branch
branch_A
* branch_B
これらのリポジトリ内のブランチ名であると思われる場合は、リポジトリを 'repo_A'と' repo_B'と呼ぶのは少し混乱します。 –
@MarkLongair、あなたは絶対に正しいです。更新された – JAM