Aliases

suggest change

There are two ways of creating aliases in Git.

Define aliases in ~/.gitconfig file:

[alias]
    ci = commit
    st = status
    co = checkout

Use git config:

git config --global alias.ci "commit"
git config --global alias.st "status"
git config --global alias.co "checkout"

After the alias is created you can use:

As with regular git commands, aliases can be used beside arguments. For example:

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents