Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ローカルのgitブランチから既存の非マスターリモートブランチに変更をプッシュするにはどうすればよいですか?「gitpush」を実行すると、すべてのローカルブランチの変更を、追跡しているリモートにプッシュしようとします。
これを行うには、ドキュメントrefspecで説明されているように、を使用します。例えば:git push
refspec
git push
git push origin local_branch_name:remote_branch_name
ブランチがリポジトリにすでに存在する場合は、次のようになります。
git push origin branch_name