Git aliases

Git aliases allow you to customize git commands by essentially renaming them. Shortening longer commands can help you save time when typing.

Example

The following command replaces the checkout command with co:

git config --global alias.co checkout

See Git Basics - Git Aliases for more information.