本系列记录的是为了将来查找是方便,大牛请绕行!
Config-Environment : 本系列的环境配置为linux ubuntu14.04
(1)基本安装:
先通过$git 命令查看系统是否预装有git
安装命令 sudo apt-get install git
ok!
(2)建库和上传
第一步:建库
$ mkdir + 名称(e.g.test)
$ cd test
查看目录$ pwd
第二步:通过git init命令把这个目录变成Git可以管理的仓库:
$ git init
第三步,用命令git add告诉Git,把文件(test.txt)添加到仓库:
$ git add test.txt
Note 此处可以添加多个文件
第四步,用命令git commit告诉Git,把文件提交到仓库:
$ git commit -m "wrote a test file"
如果是第一次添加,其完整代码为:
$ cd /tmp/ #找到对应路径git
$ mkdir test #创建目录
$ cd test/ #到达所对应的目录
$ git init #初始化
$ git config user.name "Your Name" #身份认证
$ git config user.email you@example.com #身份认证
$ git add test.txt #添加的文件
$ git commit -m "wrote a test file" # 把文件提交到仓库,并给对应的同伴给出标识
网友评论