diff --git a/README.md b/README.md index a2ecf81..5905327 100644 --- a/README.md +++ b/README.md @@ -1,22 +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 - - git add -A - git commit -m "commit message" - git push ssh://@gerrit.omnirom.org:29418/ HEAD:refs/for/android-8.1 +Pull request, right here on git. -Register at 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 [OmniROM Code Review](https://gerrit.omnirom.org) +Contact @lj50036 on irc, Network: freenode, Channel: #twrp ## Maintaining Authorship ## @@ -53,12 +42,16 @@ let me fix it because I was found out!" message. ## Getting Started ## --------------- -To get started with OmniROM, 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-8.1 + repo init -u git://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git -b twrp-8.1 + +To initialize a shallow clone, which will save even more space, use a command like this: + + repo init --depth=1 -u git://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git -b twrp-8.1 Then to sync up: @@ -66,13 +59,5 @@ Then to sync up: Then to build: - cd ; . build/envsetup.sh; brunch + cd ; export ALLOW_MISSING_DEPENDENCIES=true; . build/envsetup.sh; lunch omni_-eng; mka recoveryimage - -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/)