标签:
Git 的优点就不再多说了 。直接进入正题吧 。
$ git The program ‘git‘ is currently not installed. You can install it by typing: sudo apt-get install git
$ git config --global user.name "Your Name" $ git config --global user.email "email@example.com"
$ mkdir learngit $ cd learngit
。。。
这样瞬间就将仓库弄好了 , 此时目录下面有一个 .git 目录 , 如果没有看到的话 就是该目录隐藏起来了 。 用 ls-ah 可以看到 。
1 Git is a version control system. 2 Git is free software.
git add readme.txt
1 $ git commit -m "wrote a readme file"
解释一下 git commit 命令 , -m 后面输入的是本次提交的内容 , 可以输入任何东西 , 但是最好是有意义的 , 以后方便查阅 。
为什么 Git添加文件需要 add 和 commit 两次呢 又因为 暂存去和工作区的原因 , commit一次可以添加很多文件 。
所以可以多次add 一次 commit
标签:
原文地址:http://www.cnblogs.com/A-FM/p/5793134.html