Use github hosting your own project

Today registered their github account and his own to a small project hosted on github, write an article on the log record.

1. Registration github account. Can on github official website of the register.

2. Install git. You can use the windows msysgit client. After downloading all the way to the default installation. Specific steps can refer to the official teaching the SET up git .

3. After the second step of steps to complete the ssh key generation, the key will be added to the guthub account, declare a user name and mailbox, create a new repository, you can upload your own projects to github server.

4 can be operated using git gui, may also be used git bash command-line mode.

 

Use git source code download android

1. Local new folder, such as D: / android_source.

2. In the newly erected right in the document, select the git bash

3. Run the command clone git https://android.googlesource.com/platform/manifest

4. After the run is completed will be more of a manifest file folders, open files inside default.xml

5. Construction like git command file name in the list of values based on the default, if a node is a <project path = "frameworks / base " name = "platform / frameworks / base" />, we can build command git clone https://android.googlesource.com/platform/platform/frameworks/base

6. Run after download completed successfully.

Download the kernel source:

$ git clone https://android.googlesource.com/kernel/common.git

$ git clone https://android.googlesource.com/kernel/goldfish.git

$ git clone https://android.googlesource.com/kernel/msm.git

$ git clone https://android.googlesource.com/kernel/omap.git

$ git clone https://android.googlesource.com/kernel/samsung.git

$ git clone https://android.googlesource.com/kernel/tegra.git

 git advantage Why Git is Better than X

git usage can refer to git Simple Guide   pro git Chinese version 

Reproduced in: https: //www.cnblogs.com/MichaelGuan/archive/2012/02/26/2369197.html

Guess you like

Origin blog.csdn.net/weixin_34408717/article/details/94290108