![](https://i-blog.csdnimg.cn/blog_column_migrate/716e11a3f6610d442150bf606cb90a1a.jpeg?x-oss-process=image/resize,m_fixed,h_224,w_224)
git
介绍git原理、常用命令、分支管理等内容
yyqhwr
这个作者很懒,什么都没留下…
展开
-
gitignore详解
实例 HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/** !**/src/test/** ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetB原创 2021-05-21 10:26:21 · 214 阅读 · 0 评论 -
worktree简单使用
作用 git worktree 从一个仓库中可以创建多个工作目录,方便多开编辑器并行开发。 使用 创建worktree git worktree add -b bugfix-100 ../tmpworktree/jghctaskbugfix100 origin/master 列表展示worktree git worktree list 修剪worktree git worktree prune 如果本地目录有变动,会清空无效worktree目录 ...原创 2020-09-29 15:18:41 · 1441 阅读 · 0 评论 -
git清除本地账户
删除保存在本地的git账户 git credential-manager uninstall 缓存账户 git config --global credential.helper wincred原创 2019-04-18 13:57:20 · 1490 阅读 · 0 评论