摘要:
我问佛: 如果遇到了可爱的人,却不能把握怎么办? 佛曰: 留人间多少爱,迎浮世千重变。与有情人做快乐事,别问是劫还是缘。 仓央嘉措 阅读全文
摘要:
https://blog.csdn.net/qq_29831163/article/details/89703598 https://www.gameres.com/749181.html https://blog.csdn.net/jacke121/article/details/80174122 阅读全文
摘要:
$ git lfs migrate import --everything --include='*.LIB'https://github.com/git-lfs/git-lfs/issues/2839 https://github.com/git-lfs/git-lfs/issues/1939 阅读全文
摘要:
是生成一个和commitid的提交完全相反的提交。类似倒转。 阅读全文
摘要:
git rm --cached readme1.txt 删除readme1.txt的跟踪,并保留在本地。 git rm --f readme1.txt 删除readme1.txt的跟踪,并且删除本地文件。 阅读全文
摘要:
在本地新增一个xxx文件, git add xxx之后, 运行git status显示“changes to be committed. use git reset HEAD <file> to unstage”,然后,运行git reset xxx,这时再运行git status,提示的内容与运行 阅读全文
摘要:
(官网: https://www.perforce.com/products/helix-core-apps/merge-diff-tool-p4merge 可以作为一个stand alone app) 原来如此方便:https://www.bbsmax.com/A/amd08Enkdg/ good 阅读全文
摘要:
一般在运行git merge branchName后,git 如果提示了merger冲突,然后运行git mergetool。Git提示冲突后,运行git mergetool --tool-help可以显示当前available的mergerTool和当前Valid的mergeTool ,可参考( 阅读全文
摘要:
https://git-scm.com/book/zh/v2/Git-%E5%88%86%E6%94%AF-%E5%88%86%E6%94%AF%E7%9A%84%E6%96%B0%E5%BB%BA%E4%B8%8E%E5%90%88%E5%B9%B6 --goood 若当前你处于本地的branch 阅读全文
摘要:
git fetch指令: https://www.yiibai.com/git/git_pull.html 发现远端有更新,git pull时,如果你本地分支修改了东西,导致git pull有冲突,失败。这时可以有两种方式解决问题。 关于git pull的实验: 本地有分支branch1,对应远端的 阅读全文