blob: 70489ab939b9435d44c5270db9baf0cf65d5c17a [file] [log] [blame]
Chris Soyars5c513762010-07-05 03:40:52 +00001CyanogenMod
Steve Kondike5f263c2010-07-11 00:17:02 -04002===========
Chris Soyars5c513762010-07-05 03:40:52 +00003
Steve Kondike5f263c2010-07-11 00:17:02 -04004Submitting Patches
5------------------
Wes Garnera8c03cc2011-01-16 03:07:26 -06006Patches are always welcome! Please submit your patches via CyanogenMod Gerrit!
7You can do this by using these commands:
Chris Soyars5c513762010-07-05 03:40:52 +00008
Wes Garnera8c03cc2011-01-16 03:07:26 -06009 (From root android directory)
10 . build/envsetup.sh
11 (Go to repo you are patching, make your changes and commit)
12 cmgerrit <for(new)/changes(patch set)> <branch/change-id>
Steve Kondike5f263c2010-07-11 00:17:02 -040013
ciwrla57590d2013-01-14 21:57:39 -080014 repo start cm-10.1 .
Wes Garnera8c03cc2011-01-16 03:07:26 -060015 (Make your changes and commit)
16 repo upload .
17Note: "." meaning current directory
18For more help on using this tool, use this command: repo help upload
19
20Make your changes and commit with a detailed message, starting with what you are working with (i.e. vision: Update Kernel)
21Commit your patches in a single commit. Squash multiple commit using this command: git rebase -i HEAD~<# of commits>
22
codeworkx22122ea2013-01-18 16:41:55 +000023To view the status of your and others' patches, visit [CyanogenMod Code Review](http://review.cyanogenmod.org/)
Wes Garnera8c03cc2011-01-16 03:07:26 -060024
Steve Kondike5f263c2010-07-11 00:17:02 -040025
26Getting Started
27---------------
28
29To get started with Android/CyanogenMod, you'll need to get
ciwrla57590d2013-01-14 21:57:39 -080030familiar with [Repo](https://source.android.com/source/using-repo.html) and [Version Control with Git](https://source.android.com/source/version-control.html).
Steve Kondike5f263c2010-07-11 00:17:02 -040031
32To initialize your local repository using the CyanogenMod trees, use a command like this:
33
codeworkx22122ea2013-01-18 16:41:55 +000034 repo init -u git://github.com/CyanogenMod/android.git -b cm-10.1
Steve Kondike5f263c2010-07-11 00:17:02 -040035
36Then to sync up:
37
38 repo sync
39
ciwrla57590d2013-01-14 21:57:39 -080040Please see the [CyanogenMod Wiki](http://wiki.cyanogenmod.org/) for building instructions, by device.
Steve Kondike5f263c2010-07-11 00:17:02 -040041
42For more information on this Github Organization and how it is structured,
ciwrla57590d2013-01-14 21:57:39 -080043please [read the wiki article](http://wiki.cyanogenmod.org/w/Github_Organization)
Steve Kondike5f263c2010-07-11 00:17:02 -040044
45Buildbot
46--------
47
48All supported devices are built nightly and periodically as changes are committed to ensure the source trees remain buildable.
49
ciwrla57590d2013-01-14 21:57:39 -080050You can view the current build statuses in the [Jenkins](http://jenkins.cyanogenmod.org) tool.