0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

.gitconfig でコマンド引数を使えるエイリアス登録をするにはシェル関数を定義すると良いらしい - #git tips

Last updated at Posted at 2020-01-01

.gitconfig

  • シェルの関数で実現する
  • エイリアスの中でだけ一時的に利用するシェル関数を定義する、名前はなんでも良いがここでは1文字のfとする
  • 定義した後にすぐシェル関数 f を呼び出す
  • f の後には何も記述しない、するとコマンド引数が暗黙的に git コマンドに渡される <- ここがポイント
  • f は使い回し可能、複数のエイリアスで別の関数名をつける必要はない

git checkout して Hello とか Wow とか標準出力する、特に意味のない例

[alias]
  checkout-and-say-hello = "!f() { git checkout \"$1\" && echo Hello; }; f"
  checkout-and-say-wow = "!f() { git checkout \"$1\" && echo Wow; }; f"

Run

$ git checkout-and-say-wow master
Switched to branch 'master'
Your branch is up to date with 'origin/master'.
Wow
$ git checkout-and-say-hello master
Already on 'master'
Your branch is up to date with 'origin/master'.
Hello

Ref

command - Git alias with positional parameters - Stack Overflow
https://stackoverflow.com/questions/3321492/git-alias-with-positional-parameters

Original by Github issue

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?