# manifest **Repository Path**: mumumusuc/manifest ## Basic Information - **Project Name**: manifest - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: oreo-mr1 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-07-25 - **Last Updated**: 2023-09-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pixel Experience # ### Sync ### ```bash # Initialize local repository repo init -u https://github.com/PixelExperience/manifest -b oreo-mr1 # Sync repo sync -c -jx --force-sync --no-clone-bundle --no-tags ``` ### Build ### ```bash # Set up environment $ . build/envsetup.sh # Choose a target $ lunch aosp_$device-userdebug # Build the code $ mka bacon -jX ``` ### Submitting Patches ### Patches are always welcome! Please submit your patches to our Gerrit. To start contributing, just register at https://gerrit.pixelexperience.org Open up terminal to create your ssh keys required for submitting patches to gerrit and type in: ```bash git config --global review.gerrit.pixelexperience.org.username git config --global review.gerrit.pixelexperience.org.email ssh-keygen -t rsa -C "your@email.com" ``` In our gerrit click on your "Avatar" on the top right, then on "Settings". While in 'Settings' Click on "SSH Public Keys" on the left hand side and then on "Add Key". Now on your computer navigate to your home "~/.ssh" and open up "id_rsa.pub", copy/paste the context to "Gerrit SSH Public Keys". You can send patches to us by using these commands in terminal: ``` (From root android directory) . build/envsetup.sh (Go to repo you are patching, make your changes and commit) pixelgerrit push oreo-mr1 or git push ssh://@gerrit.pixelexperience.org:29418/ HEAD:refs/for/ ``` * `` - Your Gerrit username (which can be seen/set [here](https://gerrit.pixelexperience.org/#/settings/)) * `` - The git repo you are pushing to; all options can be viewed at [this link](https://gerrit.pixelexperience.org/#/admin/projects/) * `` - The git branch your change is based on; for projects using this manifest, it is `oreo-mr1` Make your changes and commit with a detailed message, starting with what you are working with Commit your patches in a single commit. Squash multiple commits using this command: `git rebase -i HEAD~<# of commits>` For more help, use this commands: `pixelgerrit help` or `pixelrebase help` [View Code Review](https://gerrit.pixelexperience.org/)