DEV Community

Discussion on: What are your git aliases?

Collapse
 
primo profile image
Primo • Edited

I have only two aliases:

[alias]
    changes=!git fetch && git log --name-status HEAD..
    fire=git add . && git commit -m "OMG, FIRE" && git push
Enter fullscreen mode Exit fullscreen mode
Collapse
 
imjoseangel profile image
Jose Angel Munoz

Haha! Love the second one. Thanks for sharing @primo