Git
Git
熊猫小账本App
1999 山东日照。码龄没有 10 年,只是 10 年前偶然用 QQ 一键登录的 CSDN。
展开
-
fatal: your current branch appears to be broken 【Git】
猜测原因:昨天 add commit 之后,设备断电了。今天 git log 就报文章标题的错误.git\refs\heads\ 下有各个分支命名的HEAD的纪录文件,纪录当前分支指向哪个commit,用 notepad++ 打开有一串NUL,去.git\logs\refs\heads这个目录下,找到当前分支对应的文件,打开找到最后一次commit的hashcode把这个code,复制到.git\refs\heads\ 下对应的分支文件中,就可以了...原创 2022-04-06 19:59:48 · 355 阅读 · 0 评论 -
git clone 长时间无反应 或 fatal: unable to access ‘https://github.com/abc/a.git/‘: Empty reply from server
git clone https://github.com/abc/a.gitgit clone https://github.com.cnpmjs.org/abc/a.git原创 2021-08-28 11:35:16 · 960 阅读 · 0 评论 -
Git 单人使用 多人使用
朱洪苇@Windows MINGW64 ~/Desktop/git_learn$ git --versiongit version 2.22.0.windows.1下载地址https://git-scm.com/downloadswin 下一步 下一步 …桌面空白右键 看到下图两个 git 代表安装成功mac 先安装 brew -> https://www.cnblogs.com/liyihua/p/12753163.html然后 brew install git原创 2021-07-28 16:26:23 · 346 阅读 · 0 评论 -
win7 创建 .gitignore 遇到的问题
桌面 右键 新建 文本文档.gitignorenode_modulesgit add . 时仍然有node_modules 。。。。。。。。(我以前用 win 10 是好用的呀)从老项目找的 .gitignore 放到桌面长这样???离谱谱谱谱谱谱谱谱谱谱...原创 2021-06-07 09:19:49 · 142 阅读 · 0 评论 -
git 修改 commit message
1. 修改最新 commit 的 messagegit commit --amend2. 修改老旧 commit 的 messagegit rebase -i (待变更 commit 的 FATHER)喜欢或对你有帮助,请点个赞吧 。有错误或者疑问还请评论指出。我的个人网站 --> 点击访问 。END...原创 2021-01-01 14:33:36 · 240 阅读 · 1 评论 -
git 基本命令
git pull 命令默认包含了一个 --merge 参数,因此二者的区别其实就是 merge 和 rebase 的区别。rebase 会将两个分支进行合并,同时合并之前的 commit 历史。merge 会创建一个新的 commit,如果合并时遇到了冲突,需要解决冲突后重新 commit。^ ~ 都是父节点,区别是跟随数字时候,^2 是第二个父节点,而~2是父节点的父节点。2、git pull 和 git pull --rebase 区别。1、git fetch 和 git pull 的区别。原创 2020-01-14 19:15:49 · 232 阅读 · 3 评论