标签:install soft 记录 分支 git clone 撤销 nbsp text 文件
Windows下使用git:
ubuntu下安装git
Clone 项目
git clone [address]
Git命令具体的使用,参考:
下面是一些常用的命令:
git add –A ./docs/ 向repo里添加 ./docs目录里的所有文件
git status 查看确认所有变化的文件
git commit -a –m “注释” 提交更改
git log 查看history
git push origin master 把master分支下的更改上传到服务器
git pull --rebase 从服务器更新代码
commit-pull-push 3连
git reset --soft HEAD~ 撤销commit记录
git rm 删去文件操作
git add ,git rm 等操作动作后,都需要提交你的操作记录git commit
标签:install soft 记录 分支 git clone 撤销 nbsp text 文件
原文地址:https://www.cnblogs.com/bingoc/p/10727650.html