我常用的命令:

git add .   (所有的)
git add -u   (更新的)

git commit -m "xxx"

git push origin master

以上四句为提交更改.

git rm file

git rm -r --cached cache/templates/

查看历史 git log --name-status

以下为更多:

------------------------------------------------------

git版本控制,开发过程中常用命令。
git clone https://git.oschina.net/ryb/qt_api.git git
复制代码
获取远程分支 默认master
git checkout -b branch1 origin/develop
复制代码
新建分支,从远程分支develop获取
1、 更新本地分支
git pull(输入账号密码)
复制代码
-->失败 git pull origin develop:develop 需要制定
2、 本地新建分支
git branch branch1
复制代码
+
git checkout branch1
复制代码
相当于
git checkout -b branch1 (origin/develop)
复制代码
3、 查看状态
git status
复制代码
4、 添加提交
git add filename/* git commit -m '备注'
复制代码
5、 合并分支
git merge branch1
复制代码
6、 删除旧分支
git branch -d branch1
复制代码
7、 提交本地分支
git push origin develop2:develop
复制代码
查看当前分支
git branch
复制代码
当前分支所在版本号
git reset --hard HEAD
复制代码
回滚到某个版本号
git reset 6yhes768(版本号)
复制代码
查看当前分支状态
git status
复制代码
查看历史提交记录
git log
复制代码

 

转载请注明来自 lenix的博客 ,地址 http://blog.p2hp.com/archives/3871

最后更新于 2020年3月21日

git常用命令
标签: