Last active
October 24, 2022 06:00
-
-
Save TheRatG/3937744 to your computer and use it in GitHub Desktop.
Чтобы git работал на нашей виртуозе
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global http.sslVerify false | |
``` | |
#~/.gitconfig | |
[alias] | |
co = checkout | |
br = branch | |
ci = commit | |
st = status | |
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | |
type = cat-file -t | |
dump = cat-file -p | |
gone = ! "git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | awk '$2 == \"[gone]\" {print $1}' | xargs -r git branch -D" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment