DEV Community

Discussion on: How I Set Up Git Aliases on Bash

Collapse
 
merriam profile image
Charles Merriam

You missed the most important one!

 alias g='echo "
    gs = git status, what is staged or modified
    ga = git add <files>, add or stage files
    ....
    git init = start a new git repository
 "'

Now you can have a single key to remind you of all your git aliases! Maybe use 'c' for all the Conda aliases as well.