Created
September 23, 2018 10:41
-
-
Save pfedotovsky/f77698a9be2ad4ae65fa774d89d78f1c to your computer and use it in GitHub Desktop.
Revisions
-
pfedotovsky created this gist
Sep 23, 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,17 @@ [core] editor = code --wait # set VS Code as default editor quotepath = false # display cyrillic names properly autocrlf = false # Windows only projects. Don't convert LF to CRLF and vice versa during commit & checkout. Read carefully https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration [pull] rebase = true # pull = 'fetch + rebase' instead of 'fetch + merge' [alias] co = checkout # 'git co' instead of 'git checkout' st = status # 'git st' instead of 'git status' [fetch] prune = true # autodelete remote references during fetch [push] default = current # 'git push -u' instead of 'git push -u <branch>' for pushing NEW branch [help] autocorrect = 1 # autocorrection for git commands, e.g. 'git claen -xd' will work. 1 means 0.1s wait before executing the righ command [clean] requireForce = false # 'git clean' instead of 'git clean -f'