Git
Rey bud
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git 基本操作
Git Diff # show diff of was unstaged but was changed git diff # show diff of was staged git diff --staged # or git diff --cached Commit git commit # commit command and commit information in the same line git commit -m "information balabala" # skip add原创 2021-07-04 13:20:11 · 157 阅读 · 0 评论 -
Git Rebase及其原则
rebase # rebase experiment to master git checkout experiment git rebase master # fast-forward git checkout master git merge experiment A more interesting rebase example # rebase client part to master but not in server git rebase --onto master server c原创 2021-07-11 22:12:17 · 248 阅读 · 0 评论
分享