今天注册了自己的github账号,并把自己的一个小项目托管到了github上,写篇日志记录下。
1.注册github账号。可以上github官方网站上进行注册。
2.安装git。windows下可以使用msysgit客户端。下载完成后一路默认安装即可。具体步骤可以参考官方教材set up git。
3.经过第二步的步骤,完成ssh key的生成,将key添加到guthub账户,申明用户名和邮箱,创建新的存储库后,就可以将自己的项目上传到github服务器。
4.可以使用git gui来操作,也可以使用git bash的命令行模式操作。
使用git下载android源码
1.本地新建文件夹,如D:/android_source.
2.在刚刚新建的文件内右键,选择git bash
3.运行命令git clone https://android.googlesource.com/platform/manifest
4.运行完成后会多出一个manifest文件夹,打开里面的default.xml文件
5.根据default中的清单name值构建想下的文件的git命令,如有一个节点是 <project path="frameworks/base" name="platform/frameworks/base" />,我们可以构建命令git clone https://android.googlesource.com/platform/platform/frameworks/base
6.运行完成后即下载成功.
下载内核源码:
$ 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 的优势 Why Git is Better than X
git 的用法可以参考下 git 简易指南 pro git中文版