diff --git a/VSCode/git配置笔记.txt b/VSCode/git配置笔记.txt index ff38985..2f414c1 100644 --- a/VSCode/git配置笔记.txt +++ b/VSCode/git配置笔记.txt @@ -49,4 +49,9 @@ $ git config --global --replace-all uesr.email "你的 git 的邮箱" 8、查看git的远程仓库信息 git remote -v 查看远程仓库地址。 -git remote show origin 查看远程仓库信息。 \ No newline at end of file +git remote show origin 查看远程仓库信息。 + +9、error: failed to push some refs to 如何解决 +git pull --rebase origin main +然后在进行推送 +git push -u origin main \ No newline at end of file