2023/11/27
This commit is contained in:
parent
a458e86d65
commit
c1cf6df27e
|
@ -50,3 +50,8 @@ $ git config --global --replace-all uesr.email "你的 git 的邮箱"
|
||||||
8、查看git的远程仓库信息
|
8、查看git的远程仓库信息
|
||||||
git remote -v 查看远程仓库地址。
|
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
|
Loading…
Reference in New Issue