Download heuresis

From SoftwareGuy
Jump to navigation Jump to search

Getting the code[edit | edit source]

First time...

cd ~/.ssh/

ssh-keygen

Now add key to kiln website

git config --global user.name "mark"

git config --global user.email "markhamilton@heuresistech.com"

Start at the kiln repositories [1] then select download the android pieces, Android, kernel_imx, uboot-imx and prebuilts.

git clone ssh://heuresis@heuresis.kilnhg.com/Repositories/Android/Android

or

git clone https://heuresis.kilnhg.com/Code/Repositories/Android/Android.git

Updating[edit | edit source]

git pull - updates local copy

git add frameworks/base/services/jni/com_android_server_location_GpsLocationProvider.cpp - add file to a list to be committed

git commit -m "comment here" - submit local

git push origin master - push to repository

git status - shows the status of files, local copy

Simple guide[edit | edit source]

http://rogerdudler.github.io/git-guide/