Git使用过程中的笔记 发表于 2022-10-11 更新于 2024-12-22 本文字数: 310 阅读时长 ≈ 1 分钟 Git 概念一开始看起来比较多,但是用久了明白了其原理之后就发现其实 Git 其实也不难 删除本地所有的修改,跟远程仓库的代码保持一致 1234git fetch --allgit reset --hard origin/mastergit clean -fdgit pull 参考资料 Visualizing Git Concepts with D3 Git 开发流程和规范 Git 进阶操作 Git Merge from bitbucket git notes git clean -df: remove all local untracked files git fetch && git rebase origin/master: go the this page for explaining