Skip to content

Instantly share code, notes, and snippets.

@petersenna
Last active August 29, 2015 14:24
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 petersenna/3f1d898af0f4f60655a9 to your computer and use it in GitHub Desktop.
Save petersenna/3f1d898af0f4f60655a9 to your computer and use it in GitHub Desktop.
git config file for Linux kernel
#.git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "linux-next"]
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/next/linux-next
fetch = +refs/heads/*:refs/remotes/linux-next/*
[remote "linux-staging"]
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/gregkh/staging
fetch = +refs/heads/*:refs/remotes/linux-staging/*
[remote "linux-stable"]
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable
fetch = +refs/heads/*:refs/remotes/linux-stable/*
[branch "linux-stable"]
remote = linux-stable
merge = refs/heads/master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment