簡單的別名

在 Git 中有兩種建立別名的方法:

  • 使用~/.gitconfig 檔案:
[alias]
    ci = commit
    st = status
    co = checkout
  • 使用命令列:
 git config --global alias.ci "commit"
 git config --global alias.st "status"
 git config --global alias.co "checkout"

建立別名後 - 鍵入:

  • git ci 而不是 git commit
  • git st 而不是 git status
  • git co 而不是 git checkout

與常規 git 命令一樣,別名可以在引數旁邊使用。例如:

 git ci -m "Commit message..."
 git co -b feature-42