git 与 svn 的主要区别
SVN 基本使用过程
GIT 基本使用过程
集中式
分布式
https://git-scm.com/downloads
git clone <remote_url>
git init <directory> eg: git init abc # 在abc目录写入文件 cd abc echo 'this is git' >> Remark.MF
# 注:使用 git status 查看文件状态,若是红色表明没有存入暂存区,若是绿色表明已经存入了暂存区 git add <fileName> eg: git add Remark.MF # 添加全部未提交的文件到暂存区 git add -A(注:这里是大写的A) # 或者使用下面的命令同样也会缓存全部 git add .
git rm --cached -r Remark.MF(或文件夹名)
git commit -m '提交评论'