Skip to content

Instantly share code, notes, and snippets.

View guidodizi's full-sized avatar
🏂
Enjoying the ride

Guido Dizioli guidodizi

🏂
Enjoying the ride
View GitHub Profile
@guidodizi
guidodizi / .gitconfig
Last active March 7, 2021 23:20
Usefull git aliases
[alias]
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
tree = log --oneline --decorate --all --graph
s = status
co = checkout
backup = "!f() { \
BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD); \
NEW_BRANCH_NAME=\"${BRANCH_NAME}_backup\"; \
git checkout -b $NEW_BRANCH_NAME; \
@guidodizi
guidodizi / Contributing.md
Created September 4, 2019 17:50 — forked from MarcDiethelm/Contributing.md
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.