随笔分类 - Git
摘要:git 新增忽略文件: 将文件名或者文件夹名添加到 .gitignore中 执行 git rm --cached -r 文件夹|文件 git add . git commit -m '修改了.gitignore‘ git push
阅读全文
摘要:服务器拉取代码的时候提示 [root@iZbp1actuhd152iax8l85wZ pc]# git pullgit@gitee.com: Permission denied (publickey).fatal: Could not read from remote repository. Ple
阅读全文
摘要:放弃本地修改,强制拉取更新git fetch --all git reset --hard origin/master git pull //可以省略git branch -vv //查看当前所在分支git restore --staged file2取消文件的add
阅读全文