
Git
文章平均质量分 51
Git
一方湖泊
静下心来做一件事
展开
-
绕过Git代码检查提交代码(Git提交前代码检查报错:lint-staged failed due to a git error)
代码的警告和Error都已经改正了,依旧提交不了…原创 2022-09-16 13:50:03 · 3393 阅读 · 0 评论 -
误将.idea(或者.mvn等)文件传到git解决方案
场景:我新建完springboot项目后,误提交了.mvn目录、mvnw、mvnw.cmd文件解决:1.在.gitignore文件中添加需要忽略的文件.mvnmvnwmvnw.cmd2.移除误提交的文件git rm --cached -r .mvn/git rm --cached -r mvnwgit rm --cached -r mvnw.cmd3.重新提交git add .git commit -am "删除误提交 .mvn mvnw mvnw.cmd"git push原创 2021-07-24 20:11:16 · 1625 阅读 · 1 评论 -
Git将项目添加到码云Gitee
初始化Gitgit init添加所有文件git add .提交到本地仓库git commit -m "第一次提交"连接到远程仓库git remote add origin https://gitee.com/wqkeep/cloud2020创建上传流推送仓库origin的master分支上git push -u origin master将远程库同步到本地仓库git pull --rebase origin master 刷新Gitee查看...原创 2021-01-09 00:04:45 · 354 阅读 · 1 评论