Use Git Alias To Become Pro
Source: Dev.to

Git alias is a very useful feature of Git that can make you a pro.
Every Git user should use aliases to type long commands quickly and remember them easily.
While Git has many simple commands, some useful commands can be quite long; aliases let you replace them with short, memorable shortcuts.
Aliases can also chain multiple commands, helping developers stay focused on their tasks. In modern development, Git is as essential as an umpire in cricket. Small time savings from aliases add up to a big productivity boost.
Creating a Git Alias
The basic syntax for defining a global alias is:
git config --global alias.[alias_name] "[command]"
Example
git config --global alias.ss "status"
Listing All Aliases
git config --get-regexp alias
Removing an Alias
git config --global --unset alias.ss
Note: Alias definitions are stored in your Git configuration files—either globally in
~/.gitconfigor locally in a repository’s.git/config.