Skip to content

Instantly share code, notes, and snippets.

@hogart
Last active April 27, 2022 13:42
Show Gist options
  • Save hogart/1385574 to your computer and use it in GitHub Desktop.
Save hogart/1385574 to your computer and use it in GitHub Desktop.
my .gitconfig
; on windows, this usually goes to c:\Users\MyLogin\.gitconfig
[alias]
st = status
ci = commit
co = checkout
br = branch
[color]
ui = true
[push]
default = upstream
[system.core]
longpaths=true
[pull]
rebase = true
[fetch]
prune = true
[user]
name = Konstantin Kitmanov
email = doctor.hogart@gmail.com
[core]
editor = vim
filemode = false
; must be absolute path, if this global or per-user conf
; on windows path should be escaped: c:\\Users\\MyLogin\\.gitignore_global
excludesfile = /home/hogart/.gitignore_global
# OS generated files
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
# Editor-specific files & folders
.vim
.idea
.ve
*~
# Other
.ropeproject
node_modules
# Temporary files
.sass-cache
*.pyc
*.swp
*.swo
wget https://gist.githubusercontent.com/hogart/1385574/raw/d850a4c54d5df85b7e270a81d5d5e738a1b8fa7c/.gitconfig && wget https://gist.githubusercontent.com/hogart/1385574/raw/62123d4a951d1331094eea17fb9f727b2918ec33/.gitignore_global
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment