Skip to content

Instantly share code, notes, and snippets.

@moriarty
Created May 6, 2013 13:11
Show Gist options
  • Save moriarty/5525013 to your computer and use it in GitHub Desktop.
Save moriarty/5525013 to your computer and use it in GitHub Desktop.
git config for RoboCupAtWork
#
# You can modify by hand REPO/.git/config or probably best to use
# $ git remote add NAME_OF_REMOTE USER@ADDRESS:/TO/REPO.git
#
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:b-it-bots/RoboCupAtWork.git
[remote "moriarty"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:moriarty/RoboCupAtWork.git
[branch "master"]
remote = github
merge = refs/heads/master
[remote "desktop"]
url = b-it-bots@c025-simulation:/home/b-it-bots/git-mirror/RoboCupAtWork
fetch = +refs/heads/*:refs/remotes/desktop/*
[branch "go2013"]
remote = github
merge = refs/heads/go2013
[remote "github"]
url = git@github.com:b-it-bots/RoboCupAtWork.git
fetch = +refs/heads/*:refs/remotes/github/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment