What are Git aliases
Have you ever wondered if you could skip typing git add /path/to/filename && git commit "my message" && git push
? That's what git aliases are for.
How to create an alias
Using the git config
command, we can declare globally the aliases. For example:
About 1 min