LoginSignup
0
0

More than 5 years have passed since last update.

gitコマンドのエイリアス設定

Last updated at Posted at 2018-09-26

設定方法

cf. https://qiita.com/peccul/items/90dd469e2f72babbc106

設定例

.gitconfig
[alias]
    ch = checkout
    br = branch
    st = status -s
    di = diff --name-only
    lo = log --oneline
    shl = stash list
    shs = stash save
    shp = stash pop
    ad = add --all
    co = commit -m
    coa = commit --amend
    pu = push origin HEAD
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