博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git常用命令
阅读量:6301 次
发布时间:2019-06-22

本文共 908 字,大约阅读时间需要 3 分钟。

hot3.png

1.当前分支的历史提交记录

git log --pretty=format:"%h - %an, %ar : %s"

2.远程分支

git remote show origin

3.各分支当前commit

git log --oneline --decorate --all -10# 回滚到commit-id,讲commit-id之后提交的commit都去除git reset --hard commit-id# 将最近3次的提交回滚git reset --hard HEAD~3

4.从trachk中移除

git rm -r --cached log/

5. 设置快捷键

git config --global alias.st status;git config --global alias.co checkout;git config --global alias.cm commit;git config --global alias.bc branch;

6. 更改远程url

git remote set-url 
# pushgit push remote-name local-branch-name:remote-branch-name# 查看哪些文件在版本控制里git ls-files# 修改远程分支urlgit remote set-user origin new-url#修改最近一次提交备注git commit --amend # 修改最近一次提交的commit messagegit commit --amend -m "your new message"# 将最近3次的提交回滚git reset --hard HEAD~3# 新建taggit tag -a v1.0.0 -m '1.0.0'# 推送taggit push --tags# 删除taggit tag -d v1.0.0;git push origin :refs/tags/v1.0.0

转载于:https://my.oschina.net/u/3656540/blog/1554533

你可能感兴趣的文章
day8--socket网络编程进阶
查看>>
node mysql模块写入中文字符时的乱码问题
查看>>
仍需"敬请期待"的微信沃卡
查看>>
分析Ajax爬取今日头条街拍美图
查看>>
内存分布简视图
查看>>
POJ 2918 求解数独
查看>>
如何学习虚拟现实技术vr? vr初级入门教程开始
查看>>
第4 章序列的应用
查看>>
Mysql explain
查看>>
初识闭包
查看>>
java tcp socket实例
查看>>
011 指针的算术运算
查看>>
hdu1874畅通工程续
查看>>
在windows10上安装caffe和tensorflow
查看>>
ssh连接时提示THE AUTHENTICITY OF HOST XX CAN’T BE ESTABLISHED
查看>>
多线程补充
查看>>
rails 字符串 转化为 html
查看>>
决策树
查看>>
Spring对事务管理的支持的发展历程(基础篇)
查看>>
spring 事务代码分析
查看>>