2023/11/27

This commit is contained in:
JIAL 2023-11-27 22:06:11 +08:00
parent a458e86d65
commit c1cf6df27e
1 changed files with 6 additions and 1 deletions

View File

@ -49,4 +49,9 @@ $ git config --global --replace-all uesr.email "你的 git 的邮箱"
8、查看git的远程仓库信息
git remote -v 查看远程仓库地址。
git remote show origin 查看远程仓库信息。
git remote show origin 查看远程仓库信息。
9、error: failed to push some refs to 如何解决
git pull --rebase origin main
然后在进行推送
git push -u origin main