meta data for this page
  •  
Action disabled: source

How do I create and add RSA key to Avalue GIT server?

1. Create RSA key of your Linux development platform.

For example, my Linux development platform is Ubuntu 14.04 x64 system. Here is the process to generate RSA key on it.

1)Use command below to generate RSA Key :

#ssh-keygen -t rsa

You can find “id_rsa.pub” in path below. Please use text editor to read content and copy all of them.

#/home/username/.ssh/



2. Get access of Avalue GIT server (http://aes.avalue.com.tw). Please contact with Avalue sales people to get user name & password to access it.

3. Once you log into Avalue GIT server, please click on “Profile Settings”

Then click on “SSH Keys”

Click “Add SSH Key”

Just paste the content of id_rsa.pub in key area and press “Add key” button.

Once you finish it, your RSA key of development platform is in Avalue GIT server already. You will have access right to Avalue git server and you can start to download source code from it.

4. Try to download source code right now. Go to main page of Avalue git server. Select one of the project on the right.

Copy the git link. You will also need branch version information to download source code (for example : 3.0.35-4.0.0)

In command prompt of your Linux development platform, please key in command below to download source code :

#git clone gitlab@aes.avalue.com.tw:REV-SA01/REV-SA01_Kernel.git -b 3.0.35-4.0.0