Git 的优点就不再多说了 .直接进入正题吧 . 安装Git 首先可以尝试输入 Git 看看有没有反映 . $ git The program 'git' is currently not installed. You can install it by typing: sudo apt-get install git 如果你也是用的 ubuntu 的话 他就会很友善的告诉你 你没有安装 git 并且告诉你如何安装 git 安装完成之后还需要进行最后一步的设置 . 在命令行输入 $ git co…
现在,你已经学会了修改文件,然后把修改提交到Git版本库,现在,再练习一次,修改readme.txt文件如下: Git is a distributed version control system. Git is free software distributed under the GPL. 然后尝试提交: git add readme.txt git commit -m "append GPL" [master 9a36c54] append GPL 1 file changed…