GIT Server: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
git remote add linux-2.6 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git | git remote add linux-2.6 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git | ||
git pull linux-2.6 | git pull linux-2.6 linux-2.6 | ||
===Push mainstream changes to ALSA GIT repository=== | ===Push mainstream changes to ALSA GIT repository=== |
Revision as of 10:25, 28 April 2008
alsa-kernel repository
Anonymous access
Read only GIT server
git clone git://git.alsa-project.org/alsa-kernel.git alsa-kernel
Web interface
http://git.alsa-project.org/?p=alsa-kernel.git
For developers
Clone repository
git clone git@git.alsa-project.org:alsa-kernel.git alsa-kernel
Add remote and pull from official linux-2.6 tree
git remote add linux-2.6 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git git pull linux-2.6 linux-2.6
Push mainstream changes to ALSA GIT repository
git push --tags alsa-server master
Branches
- master
- this branch is for main development (Andrew Morton will get patches for mm tree)
- for-linus
- this branch is for mainstream tree (for Linux Torvalds)
- linux-2.6
- this is official linux 2.6 mainstream tree
- private-*
- all developers can create a private branch to test a particular set of patches, prefix for these branches is 'private-' (for example private-alsabug-1234, private-tiwai-vmaster etc.)
Maintenance
GIT server is maintaned by User:Perex.