Skip to content

Instantly share code, notes, and snippets.

@TheRatG
Last active October 24, 2022 06:00
Show Gist options
  • Save TheRatG/3937744 to your computer and use it in GitHub Desktop.
Save TheRatG/3937744 to your computer and use it in GitHub Desktop.
Чтобы git работал на нашей виртуозе
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