Loading

随笔分类 -  git

摘要:撤销 rebase 查看本地记录: git reflog 在 reflog 中找到本次 rebase 之前的 id 回退到对应的 id git reset --hard <第2步拿到的id> 如果此时仍处于 rebase 状态,使用命令取消: git rebase --abort 合并时处理发生变更 阅读全文
posted @ 2024-06-24 13:03 kingron 阅读(37) 评论(0) 推荐(0)
摘要:Push failed: Unable to access 'https://github.com/financialfly/lzz.git/': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 因为 Gi 阅读全文
posted @ 2024-06-24 13:00 kingron 阅读(42) 评论(0) 推荐(0)
摘要:GitHub 创建仓库提示代码 echo "# 项目名" >> README.md git init git add README.md git commit -m "first commit" git remote add origin git@github.com:qiubaiying/项目名. 阅读全文
posted @ 2024-06-24 12:52 kingron 阅读(11) 评论(0) 推荐(0)