Last active
September 28, 2020 15:21
-
-
Save yakimka/2642f68bb40b247e13d39f9cf0ac3ea3 to your computer and use it in GitHub Desktop.
Revisions
-
yakimka revised this gist
Sep 28, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -70,6 +70,7 @@ coverage.xml ehthumbs.db Thumbs.db .desktop .directory # pyenv .python-version -
yakimka revised this gist
Sep 28, 2020 . 1 changed file with 50 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,9 @@ *.exe *.o *.so __pycache__/ *.py[cod] *$py.class # Packages # ############ @@ -20,12 +23,42 @@ *.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 # ###################### @@ -36,11 +69,27 @@ .Trashes ehthumbs.db Thumbs.db .desktop # pyenv .python-version # mypy .mypy_cache/ .dmypy.json dmypy.json # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Other # ###################### .idea .vscode *.buk -
yakimka revised this gist
Sep 26, 2020 . 2 changed files with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ [user] name = {{git_name}} email = {{git_email}} [core] editor = nano 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 charactersOriginal file line number Diff line number Diff line change @@ -44,3 +44,4 @@ Thumbs.db .idea .vscode *.buk .coverage -
yakimka revised this gist
Dec 24, 2018 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,7 @@ email = email [core] editor = nano excludesfile = ~/.gitexcludes [alias] pall = !git push --all && git push --tags -
yakimka created this gist
Dec 18, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ [user] name = yakimka email = email [core] 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,46 @@ # Compiled source # ################### *.com *.class *.dll *.exe *.o *.so # 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 # Logs and databases # ###################### *.log *.sql *.sqlite *.db # OS generated files # ###################### .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Other # ###################### *.todo .idea .vscode *.buk