From 7637ef8b13d28c85dced39d124c7182c66638b80 Mon Sep 17 00:00:00 2001 From: mithun46 Date: Fri, 18 Oct 2013 04:36:32 -0700 Subject: [PATCH] Add README.md Change-Id: Ib9558dcab343e24ce619f5b6dc31faad9bf416d9 --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f405db0 --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +Submitting Patches +------------------ +We're open source, and patches are always welcome! +You can send patches by using these commands: + + cd + + git add -A + git commit -m "commit message" + git push ssh://@gerrit.omnirom.org:29418/ HEAD:refs/for/ + +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) + + +Getting Started +--------------- + +To get started with OMNI ROM, you'll need to get +familiar with [Git and Repo](http://source.android.com/download/using-repo). + +To initialize your local repository using the OMNI trees, use a command like this: + + repo init -u git://github.com/omnirom/android.git -b + +Then to sync up: + + repo sync + +Then to build: + + cd ; . build/envsetup.sh; brunch + +If you need more information or a more detailed guide, check [Here](http://docs.omnirom.org) +Our Official IRC Channel: [#omnirom - USERS](http://webchat.freenode.net/?channels=omnirom) , [#omni - DEVS](http://webchat.freenode.net/?channels=omni) \ No newline at end of file