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 3 years have passed since last update.

【Git】エイリアス設定 

Last updated at Posted at 2021-03-14

####git エイリアス 何を設定したか確認
git config --global --list | grep ^alias\.

####"com" = "commit -m"
git config --global alias.com "commit -m"

####"st" = "status"
git config --global alias.st status

####"br" = "branch"
git config --global alias.br branch

####"mg" = "merge --no-ff (取り込みたいブランチ名)"
git config --global alias.mg "merge --no-ff"

参考:https://dev.classmethod.jp/articles/git-config-alias-19/

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?