Git - Making your life Easier with Git: Pro Tips - aliases
Head First Git: A Learner’s Guide to Understanding Git from the Inside Out、 Raju Gandhi(著)、 O’Reilly Mediaの Chapter 8.(Making your life Easier with Git: Pro Tips)、SHARPEN YOUR PENCIL(642/715)の解答を求めてみる。
入出力結果(Terminal, Zsh)
% git config --global alias.loga 'log --oneline --graph --all'
% git config --global alias.loga
log --oneline --graph --all
% git config --global alias.aliases 'config --list --show-origin'
% cd a-head-above
% git loga
* d5a8727 (HEAD -> master) docs:add a README file
% git aliases
…
%