随笔分类 -  Git

摘要:git 新增忽略文件: 将文件名或者文件夹名添加到 .gitignore中 执行 git rm --cached -r 文件夹|文件 git add . git commit -m '修改了.gitignore‘ git push 阅读全文
posted @ 2021-11-10 16:32 fpc 阅读(466) 评论(0) 推荐(0) 编辑
摘要:服务器拉取代码的时候提示 [root@iZbp1actuhd152iax8l85wZ pc]# git pullgit@gitee.com: Permission denied (publickey).fatal: Could not read from remote repository. Ple 阅读全文
posted @ 2021-07-27 15:29 fpc 阅读(112) 评论(0) 推荐(0) 编辑
摘要:放弃本地修改,强制拉取更新git fetch --all git reset --hard origin/master git pull //可以省略git branch -vv //查看当前所在分支git restore --staged file2取消文件的add 阅读全文
posted @ 2021-01-11 09:58 fpc 阅读(73) 评论(0) 推荐(0) 编辑