under Notes of Programming
git reflog找到丢失的 commit 并将前面的哈希值复制出来,通常是 8 个字符的哈希值。可以输入 q 回到命令行git checkout 哈希值跳转至丢失的 commitgit reset --soft HEAD~1撤回当前 commit,将更改恢复为可 commit 状态git ...
under Notes of Programming
以下方法可使在 Clone 或 Push Github 上的项目时通过代理执行;同时其他诸如对 Gitee 进行 Git 操作则不会通过代理git config --global http.https://github.com.proxy http://127.0.0.1:7890 git c...
under Website Notes of Programming
报错日志[2023-05-08 16:08:25.900] debug: ⛔️ Server wasn't able to start properly. [2023-05-08 16:08:25.901] error: knex: Required configuration option...
under Notes of Programming
Git 暂存本地更新 PULL 后再恢复本地更新git status查看本地更新文件列表,是否与远端更新文件冲突git stash第一步无冲突,则暂存本地更新,并回滚到更新前版本执行 PULL下载并更新本地版本,将本地版本与远端同步git stash pop将暂存的本地更新覆盖于当前版本,实现...