Skip to content

Instantly share code, notes, and snippets.

@chrisfrancis27
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisfrancis27/be582bbe3a76e3a475a4 to your computer and use it in GitHub Desktop.
Save chrisfrancis27/be582bbe3a76e3a475a4 to your computer and use it in GitHub Desktop.
Git config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[push]
default = tracking
[remote "origin"]
url = git@github.com:chrisfrancis27/chrsfrncs-sails.git
fetch = +refs/heads/*:refs/remotes/origin/*
[remote "staging"]
url = git@github.com:chrisfrancis27/chrsfrncs-sails.git
pushurl = https://git.heroku.com/chrsfrncs-sails-staging.git
push = +refs/heads/staging:refs/heads/master
[remote "production"]
url = git@github.com:chrisfrancis27/chrsfrncs-sails.git
pushurl = https://git.heroku.com/chrsfrncs-sails-production.git
push = +refs/heads/master:refs/heads/master
[branch "develop"]
remote = origin
merge = refs/heads/develop
[branch "staging"]
remote = origin
merge = refs/heads/staging
[branch "master"]
remote = origin
merge = refs/heads/master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment