
git
hfyinsdu
烂笔头--好记性不如烂笔头
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Squash commits into one with Git
Step 1: choose your starting commit git rebase --interactive [commit-hash] Where [commit-hash] is the hash of the commit just before the first one you want to rewrite from. Step 2: picking and squa...转载 2020-04-26 20:33:39 · 318 阅读 · 0 评论 -
git command
1. check a commit before a specified commit Use git show HEAD^1. You can replace HEAD with your commit-hash refer: https://stackoverflow.com/questions/25664323/git-get-the-commit-hash-prior-to-a-spe...原创 2020-02-26 16:30:08 · 94 阅读 · 0 评论