LoginSignup
0
0

More than 1 year has passed since last update.

(git) 指定したコミットが含まれるか確認する

Posted at

(git) 指定したコミットが含まれるか確認する

git merge-base --is-ancestor commitA commitB

引数の説明

commitA → このコミットが含まれるか確認する
commitB → このコミットを対象に commitA が含まれるか確認する。

結果

含まれる場合 → 終了コード 0
含まれない場合 → 終了コード 1

git merge-base --is-ancestor 7abcdef  HEAD

HEAD に 7abcdef が含まれるか確認する。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0