Last active
April 15, 2023 14:53
-
-
Save diegolikescode/6b0e7c7e820a4c21037dda69ab6ded45 to your computer and use it in GitHub Desktop.
gitconfig global
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] | |
| email = diegoprestes.git@hotmail.com | |
| name = diegolikescode | |
| [core] | |
| editor = vim | |
| [alias] | |
| s = !git status -s | |
| c = !git add --all && git commit -m | |
| l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white)%s - %C(cyan)%cn, %C(green)%cr' | |
| cm = !git checkout master && git pull origin master | |
| pu = !git pull origin | |
| [credential] | |
| helper = store | |
| # helper = osxkeyc | |
| useHttpPath = true | |
| [http] | |
| proxy = | |
| sslVerify = false | |
| [https] | |
| proxy = | |
| sslVerify = false | |
| [pull] | |
| rebase = false | |
| [credential "https://dev.azure.com"] | |
| useHttpPath = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment