git可视化工具
Git Extensions
小乌龟 toroisgit
Everything
git命令
作用:git stash
用于想要保存当前的修改,但是想回到之前最后一次提交的干净的工作仓库时进行的操作.git stash
将本地的修改保存起来,并且将当前代码切换到HEAD
提交上.
https://www.jianshu.com/p/14afc9916dcb
用法:
https://blog.youkuaiyun.com/daguanjia11/article/details/73810577
Visual Assist X 安装、使用 和 快捷键
https://blog.youkuaiyun.com/freeking101/article/details/54631640
一次搞清 git checkout,git restore 和 git reset
https://blog.youkuaiyun.com/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 reset HEAD~1
git回滚push原理
先本地回滚commit,再push
新建分支不能成功push
git push --set-upstream origin ****_branch 关联远程分支
https://www.ruanyifeng.com/blog/2020/04/git-cherry-pick.html
tag
操作
git tag
git checkout v1.3.3
head master 分离
https://www.cxybb.com/article/qq_42322103/95185844
git checkout master