Skip to content

Instantly share code, notes, and snippets.

@diegolikescode
Last active April 15, 2023 14:53
Show Gist options
  • Select an option

  • Save diegolikescode/6b0e7c7e820a4c21037dda69ab6ded45 to your computer and use it in GitHub Desktop.

Select an option

Save diegolikescode/6b0e7c7e820a4c21037dda69ab6ded45 to your computer and use it in GitHub Desktop.
gitconfig global
[user]
email = [email protected]
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