web-dev-qa-db-fra.com

Comment alias 'git checkout' à 'git co'

Je voudrais la commande git co être identique à taper git checkout.

Un alias Bash normal (alias co='checkout') ne fonctionne pas.

125
joseph.hainline

La commande:

git config --global alias.co checkout

créera un alias git pour le faire. Il ajoutera l'entrée suivante dans votre fichier global ~/.gitconfig:

[alias]
    co = checkout
253
joseph.hainline

Vous pouvez aussi éditer ceci dans votre configuration git:

[alias]
   co = checkout
15
sma