git可视化工具
Git Extensions 小乌龟 toroisgit Everything
git命令
作用:git stash 用于想要保存当前的修改,但是想回到之前最后一次提交的干净的工作仓库时进行的操作.git stash 将本地的修改保存起来,并且将当前代码切换到HEAD 提交上. https://www.jianshu.com/p/14afc9916dcb 用法: https://blog.csdn.net/daguanjia11/article/details/73810577
Visual Assist X 安装、使用 和 快捷键
https://blog.csdn.net/freeking101/article/details/54631640
一次搞清 git checkout,git restore 和 git reset
https://blog.csdn.net/Sweet_19BaBa/article/details/111950384?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_title~default-0.control&spm=1001.2101.3001.4242
当名字不一致时
git config --global user.name ****
git回滚详解
https://www.cnblogs.com/kidsitcn/p/4513297.html
git回滚push原理
先本地回滚commit,再push
新建分支不能成功push
git push --set-upstream origin ****_branch 关联远程分支 https://www.ruanyifeng.com/blog/2020/04/git-cherry-pick.html
|