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?

【Git】リポジトリ専用のGit Aliasesを設定する方法

Posted at

リポジトリ専用のGit Aliasesを設定する方法

git config --local alias.ci commit

設定したリポジトリでのみ git ci で git commit が実行できる。

外部コマンドにエイリアスを設定する

外部コマンドにエイリアスを設定する場合にはコマンドの最初に ! を記述する必要がある。

git config --local alias.sync "!git switch main && git pull --prune && git branch --format '%(refname:short) %(upstream:track)' | grep -oP '.*(?=\s\[gone\]$)' | xargs -r git branch -D"

設定したリポジトリで git syncgit switch main && git pull --prune && git branch --format '%(refname:short) %(upstream:track)' | grep -oP '.*(?=\s\[gone\]$)' | xargs -r git branch -D が実行できる。

参考

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?