git コマンドのショートカットまたはエイリアスを使用したいと考えています。
git diff
git status
git push
git pull
git stash
git branch -a
ショートカットやエイリアスを作成するにはどうすればよいですか? 定義済みのリストはありますか?
git コマンドのショートカットまたはエイリアスを使用したいと考えています。
git diff
git status
git push
git pull
git stash
git branch -a
ショートカットやエイリアスを作成するにはどうすればよいですか? 定義済みのリストはありますか?
これをあなたの中に入れてください.gitconfig
[alias]
st = status
ci = commit
br = branch
co = checkout
好きなだけ追加できます
git config --global alias.<short> <long>
例えば
git config --global alias.cob "checkout -b"
( を使用しない--global
と、プロジェクトごとのエイリアスが取得されます。)
git_mode
入力を避けてforなどgit
を使用するために、bash 用のターミナル「モード」を作成しました。c
commit
ここで見つけることができます。
サンプル コマンドは次のようになります。
# Add
alias a='git add'
alias add='git add'
# Diff
alias d='git diff'
alias diff='git diff'
# Grep/Search
alias search='git grep'
alias grep='git grep'
# Merge
alias merge='git merge'
alias m='git merge'
# Branch
alias b='git branch'
# Status
alias s='git status'
alias status='git status'
# Commit
alias c='git commit'
alias commit='git commit'
# Remote
alias remote='git remote'
# Pull
alias pull='git pull'
# Push
alias push='git push'
# init
alias init='git init'
alias i='git init'
# clone
alias clone='git clone'
# checkout
alias ch='git checkout'
alias checkout='git checkout'
# stash
alias stash='git stash'
このライブラリ SCM Breezeを使用しています。ファイル用の本当にクールなUIを提供し、使いやすい.