LoginSignup
1
0

More than 3 years have passed since last update.

git global コマンド削除方法

Posted at
alias.st=status
alias.cob=checkout -b
alias.co=checkout
alias.ss=status
alias.br=branch
alias.com=commit -m
編集、更新
$ git config キー名 設定値 #ローカルリポジトリに設定
$ git config --global キー名 設定値 #全てのローカルリポジトリに設定
削除
$ git config --unset キー名
$ git config --global --unset alias.st
$ git config --global --unset alias.cob
$ git config --global --unset alias.co
$ git config --global --unset alias.ss
$ git config --global --unset alias.br
$ git config --global --unset alias.com
1
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
1
0