Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 11th, 2012  |  syntax: None  |  size: 0.82 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. [core]
  2.   repositoryformatversion = 0
  3.   filemode = true
  4.   bare = false
  5.   logallrefupdates = true
  6.   ignorecase = true
  7.  
  8. [remote "origin"]
  9.   fetch = +refs/heads/*:refs/remotes/origin/*
  10.   url = git@github.com:userName/repoName.com.git
  11.  
  12.   [branch "master"]
  13.     remote = origin
  14.     merge = refs/heads/master
  15.  
  16.   [branch "development"]
  17.     remote = origin
  18.     merge = refs/heads/development
  19.  
  20.   [branch "v/1"]
  21.     remote = origin
  22.     merge = refs/heads/v/1
  23.  
  24.  
  25. [remote "production"]
  26.   fetch = +refs/heads/*:refs/remotes/production/*
  27.   url = git@heroku.com:appName-production.git
  28.  
  29.   [branch "heroku-production"]
  30.     remote = production
  31.     merge = refs/heads/master
  32.  
  33.  
  34. [remote "staging"]
  35.   fetch = +refs/heads/*:refs/remotes/staging/*
  36.   url = git@heroku.com:appName-staging.git
  37.  
  38.   [branch "heroku-staging"]
  39.     remote = staging
  40.     merge = refs/heads/master