Git安装
-
首先进入root模式
-
在安装新软件包之前,应该始终更新一下apt软件包索引:
apt-get update
-
安装Git
apt-get install git
Git配置
-
现在已经安装了Git,建议设置Git提交电子邮件和用户名:
git config --global user.name "Your Name" git config --global user.email "youremail@yourdomain.com"
-
可以使用以下命令验证配置内容:
git config --list 输出结果: user.name=Your Name user.email=youremail@yourdomain.com
下载Github中仓库源代码
使用如下所示命令:其中仓库地址可以点击上图所示的Clone or download按钮,即可得到地址,命令行中的mydir是选择的存放源代码的路径
git clone git://git.kernel.org/pub/scm/.../linux.git mydir