随笔分类 - git
摘要:1.git reflog 2.git reset --hard 971d9b97
阅读全文
摘要:git本地合并分支 一、git rebase git rebase b // 将b分支合并到当前分支 二、git merge git merge b // 将b分支合并到当前分支
阅读全文
摘要:第一次用git,遇到这个错误提示,原来是这样的: fatal: Not a git repository (or any of the parent directories): .git This tells you that the directory you're in is not a git
阅读全文
摘要:执行git命令时出现fatal: 'origin' does not appear to be a git repository错误 在执行git pull origin master时出现: fatal: 'origin' does not appear to be a git repositor
阅读全文
摘要:Git和SVN是我们最常用的版本控制系(Version Control System, VCS),当然,除了这二者之外还有许多其他的VCS,例如早期的CVS等。顾名思义,版本控制系统主要就是控制、协调各个版本的文档内容的一致性,这些文档包括但不限于代码文件、图片文件等等。早期SVN占据了绝大部分市场
阅读全文