DEV Community

Discussion on: "git nah" and more handy Git aliases

Collapse
 
maxtruxa profile image
Max Truxa

Nice post!

Some of the examples are broken.
The = is part of the config syntax but must not be present on the command line. For example

git config --global alias.c = "commit"

should be

git config --global alias.c "commit"
Collapse
 
michi profile image
Michael Z

Thanks for that! I corrected it