Last active
September 28, 2020 15:21
-
-
Save yakimka/2642f68bb40b247e13d39f9cf0ac3ea3 to your computer and use it in GitHub Desktop.
gitconfig
This file contains hidden or 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
[user] | |
name = {{git_name}} | |
email = {{git_email}} | |
[core] | |
editor = nano | |
excludesfile = ~/.gitexcludes | |
[alias] | |
pall = !git push --all && git push --tags | |
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short |
This file contains hidden or 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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# Packages # | |
############ | |
# it's better to unpack these files and commit the raw source | |
# git has its own built in compression methods | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
# Distribution / packaging | |
.Python | |
build/ | |
develop-eggs/ | |
dist/ | |
eggs/ | |
.eggs/ | |
parts/ | |
sdist/ | |
wheels/ | |
*.egg-info/ | |
.installed.cfg | |
*.egg | |
MANIFEST | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.sqlite | |
*.db | |
pip-log.txt | |
pip-delete-this-directory.txt | |
# Unit test / coverage reports | |
htmlcov/ | |
.tox/ | |
.nox/ | |
.coverage | |
.coverage.* | |
.cache | |
nosetests.xml | |
coverage.xml | |
*.cover | |
.hypothesis/ | |
.pytest_cache/ | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
.desktop | |
.directory | |
# pyenv | |
.python-version | |
# mypy | |
.mypy_cache/ | |
.dmypy.json | |
dmypy.json | |
# Environments | |
.env | |
.venv | |
env/ | |
venv/ | |
ENV/ | |
env.bak/ | |
venv.bak/ | |
# Other # | |
###################### | |
.idea | |
.vscode | |
*.buk | |
.coverage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment