※ 作業対象ブランチ名は「fix/test」とする
1. ブランチ一覧を確認する
$ git branch
2. 現在のブランチから派生ブランチを作成し、作業ブランチを変更する
$ git checkout -b "fix/test"
* $ git branch "fix/test" と $ git checkout "fix/test" をワンライナーで表記
3. 2 で作成したブランチが存在し、作業ブランチになっていることを確認する
$ git branch
4. 空コミットを用いて、空のプルリクエストを送る
$ git commit --allow-empty -m "<コミットメッセージ>"
* --allow-emnpty は空コミットの実行、-m(--message) はエディタを起動せずにコミットメッセージを入力できる
5. リモートブランチにPush
git push --set-upstream origin fix/test
* --set-upstream(-u) をつけることにより、自動的に追跡ブランチとなる
コメント
最新を表示する
NG表示方式
NGID一覧