标签:sp 文件 on 代码 bs ad linux as 安装
安装pysgit软件
git config --global user.email "emial"
git config --global user.name "name"
我选择的是bash,这个是纯linux的命令
mddir git
cd git
将当前路径变化为一个仓库
git init
在这个路径下添加一个readme.txt文本文件,注意不要用记事本打开任何文件,用notpad
git add readme.txt
git commit -m "add a read me file"
获取代码仓库的状态
git status
查看修改的内容
git diff
让后当你修改完一个内容以后,再次执行
git add
git commit -m ""
标签:sp 文件 on 代码 bs ad linux as 安装
原文地址:http://www.cnblogs.com/yufenghou/p/4053768.html