- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Git/git push/デフォルト以外のリモートブランチにpushする へ行く。
- 1 (2017-08-04 (金) 16:04:29)
デフォルト以外のリモートブランチにpushする
デフォルトのリモートブランチにpushする
git push origin branch1 # 普通はリモートにローカルと同名のbranch1ブランチが存在し、そこにpushする git push # origin branch1を省略することもできる
デフォルト以外の(別名の)リモートブランチにpushする
git push origin branch1:remote_branch2 # ローカルのブランチ名branch1:リモートのブランチ名remote_branch2 のように指定する