Git是一款分布式的版本控制工系统。区别于SVN,SVN不是分布式的。现在大多数情况下都在使用Git,少数老系统还在使用SVN
不推荐使用图形化界面操作git,推荐使用git命令来操作。这样才能记住具体的操作,也显得更厉害些。
git config --global user.name "[name]" //全局设置git用户名
git config --global user.email "[email address]" //全局设置git邮箱
git init [project-name] //初始化一个仓库
git clone [url] //克隆一个项目
git status //查看提交信息
git diff //显示区别
git add [file] //添加到暂存区
git reset [file] //回滚文件
git commit -m "[descriptive message]" //提交文件并添加提交信息
git branch //查看分支
git branch [branch-name] //新建分支
git checkout [branch-name] //切换分支
git merge [branch] //合并分支
git branch -d [branch-name] //删除分支
git log //查看提交的日志信息
这些是简单的命令。
具体的操作需要在项目里实现。比如说冲突之类的。晚上再更新。