Fix this up :)
This commit is contained in:
parent
7989f85b66
commit
fbd87870c5
2 changed files with 416 additions and 427 deletions
41
README.md
41
README.md
|
|
@ -1,23 +1,11 @@
|
|||
## Submitting Patches ##
|
||||
------------------
|
||||
Our ROM is open source, and patches are always welcome!
|
||||
You can send patches by using these commands:
|
||||
Our project is open source, and patches are always welcome!
|
||||
You can send patches by using:
|
||||
|
||||
cd <project>
|
||||
<make edits>
|
||||
git add -A
|
||||
git commit -m "commit message"
|
||||
git push ssh://<username>@gerrit.omnirom.org:29418/<project> HEAD:refs/for/android-6.0
|
||||
|
||||
Register at gerrit.omnirom.org and use the username that you registered there in the above command
|
||||
|
||||
Commit your patches in a single commit. Squash multiple commit using this command: git rebase -i HEAD~<# of commits>
|
||||
|
||||
If you are going to make extra additions, just repeat steps (Don't start a new patch), but instead of git commit -m
|
||||
use git commit --amend. Gerrit will recognize it as a new patchset.
|
||||
|
||||
To view the status of your and others patches, visit [OMNI ROM Code Review](https://gerrit.omnirom.org)
|
||||
Pull request, right here on git.
|
||||
|
||||
Contact me on irc, Network: freenode, Channel: #twrp
|
||||
|
||||
## Maintaining Authorship ##
|
||||
----------------------
|
||||
|
|
@ -53,12 +41,16 @@ let me fix it because I was found out!" message.
|
|||
## Getting Started ##
|
||||
---------------
|
||||
|
||||
To get started with OMNI ROM, you'll need to get
|
||||
To get started with OMNI sources to build TWRP, you'll need to get
|
||||
familiar with [Git and Repo](https://source.android.com/source/using-repo.html).
|
||||
|
||||
To initialize your local repository using the OMNIROM trees, use a command like this:
|
||||
To initialize your local repository using the OMNIROM trees to build TWRP, use a command like this:
|
||||
|
||||
repo init -u git://github.com/omnirom/android.git -b android-6.0
|
||||
repo init -u git://github.com/lj50036/platform_manifest_twrp_omni.git -b twrp-6.0
|
||||
|
||||
To initialize a shallow clone, which will save even more space, use a command like this:
|
||||
|
||||
repo init --depth=1 -u git://github.com/lj50036/platform_manifest_twrp_omni.git -b twrp-6.0
|
||||
|
||||
Then to sync up:
|
||||
|
||||
|
|
@ -66,13 +58,4 @@ Then to sync up:
|
|||
|
||||
Then to build:
|
||||
|
||||
cd <source-dir>; . build/envsetup.sh; brunch <device_name>
|
||||
|
||||
|
||||
If you need more information or a more detailed guide, click [here to see our wiki.](http://docs.omnirom.org)
|
||||
|
||||
Our official IRC Channels are hosted on Freenode:
|
||||
|
||||
[#omnirom - USERS](http://webchat.freenode.net/?channels=omnirom/)
|
||||
|
||||
[#omni - DEVELOPERS](http://webchat.freenode.net/?channels=omni/)
|
||||
cd <source-dir>; . build/envsetup.sh; lunch omni_<device>-eng; mka recoveryimage
|
||||
|
|
|
|||
Loading…
Reference in a new issue