Git Gerrit Setup
The git repository for development is tied to a gerrit account.
In order to use the git repo, one need to do 3 things:
1) Create an SSH Public Key
1. Skip this section if file ~/.ssh/id_rsa.pub present on development system. Otherwise follow next steps.
2. Run command 'ssh-keygen -t rsa'
3. Do not create a passphrase
4. Verify that file ~/.ssh/id_rsa.pub created
2) Add SSH Key to Gerrit
1. Navigate to gerrit website and Log in
2. click Settings --> SSH Public Keys --> Add Key ('How to Generate an SSH Key' that above step is mentioned here too)
3. Paste content of ~/.ssh/id_rsa.pub and click Add
3) Clone git repo
1. Change directory to a directory of choice.
2. Clone the repo, by running command ' git clone ssh://<gerrit website>/proj'