Last active
March 6, 2016 03:25
-
-
Save pcarrier/7b53fd39886aea8d5c77 to your computer and use it in GitHub Desktop.
useful kernel remotes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[remote "stable"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git | |
fetch = +refs/heads/*:refs/remotes/stable/* | |
[remote "mainline"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git | |
fetch = +refs/heads/*:refs/remotes/mainline/* | |
[remote "history"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/history/history.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/history/history.git | |
fetch = +refs/heads/*:refs/remotes/history/* | |
[remote "next"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/next/linux-next.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git | |
fetch = +refs/heads/*:refs/remotes/next/* | |
[remote "fedora"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/jwboyer/fedora.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/fedora.git | |
fetch = +refs/heads/*:refs/remotes/fedora/* | |
[remote "opensuse"] | |
url = https://github.com/openSUSE/kernel | |
url = git://kernel.opensuse.org/kernel.git | |
fetch = +refs/heads/*:refs/remotes/opensuse/* | |
[remote "redpatch"] | |
url = git://oss.oracle.com/git/redpatch.git | |
fetch = +refs/heads/*:refs/remotes/redpatch/* | |
[remote "uek2.6.32"] | |
url = git://oss.oracle.com/git/linux-2.6-unbreakable.git | |
fetch = +refs/heads/*:refs/remotes/uek2.6.32/* | |
[remote "uek3.8"] | |
url = git://oss.oracle.com/git/linux-uek3-3.8.git | |
fetch = +refs/heads/*:refs/remotes/uek3.8/* | |
[remote "uek4.1"] | |
url = git://oss.oracle.com/git/linux-uek.git | |
fetch = +refs/heads/*:refs/remotes/uek4.1/* | |
[remote "precise"] | |
url = git://kernel.ubuntu.com/ubuntu/ubuntu-precise.git | |
fetch = +refs/heads/*:refs/remotes/precise/* | |
[remote "trusty"] | |
url = git://kernel.ubuntu.com/ubuntu/ubuntu-trusty.git | |
fetch = +refs/heads/*:refs/remotes/trusty/* | |
[remote "xenial"] | |
url = git://kernel.ubuntu.com/ubuntu/ubuntu-xenial.git | |
fetch = +refs/heads/*:refs/remotes/xenial/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment