Creating Aliases
Example
Removing Aliases
Listing Aliases
Shows all global config entries including your aliases.
Learn more about Mintlify
Enter your email to receive updates about new features and product releases.
Create custom shortcuts for frequently used Git commands
git config --global alias.<alias> '<actual_command>'
git config --global alias.lo 'log --oneline'
git config --global --unset alias.<alias>
git config --global --list