gpt4 book ai didi

git - 为什么我在 git 中看不到任何分支?

转载 作者:太空狗 更新时间:2023-10-29 14:32:03 25 4
gpt4 key购买 nike

当我尝试使用 git branch 命令查看我的分支列表时,我什么也看不到。快照:

enter image description here

如您所见,命令 git branchgit branch -v 没有按预期显示分支列表。

详细信息:我已经在我的存储库中摆弄了一段时间。我的 repo 的 github 网页说分支 hw3 比 master 提前 17 次提交。

是不是因为我删除了本地仓库中分支 hw' 中的所有内容?

此外,当我尝试命令 git checkout master 时,我收到以下消息:

error: pathspec 'master' did not match any file(s) known to git

截至目前,我已经删除了我机器上 hw' 分支中的所有内容,但 Github 网页仍然显示所有这些文件。

此外,我在 hw3 分支中输入命令 git init 作为 stackoverflow 上另一个问题的建议。这对我有什么影响?

最初,我的 hw3 分支中有一堆文件,而 master 分支中只有一个 README 文件。我只是想让事情恢复正常。

我应该如何进行?谢谢!

最佳答案

git branch 不带任何参数只打印本地分支

git branch常用选项:

# print out local branches
git branch

# print out remote branches
git branch -r

# print out local & remote branches
git branch -a

如何解决您的问题

首先用远程仓库更新本地仓库

git fetch --all --prune

现在检查你需要的任何分支

git checkout master

关于git - 为什么我在 git 中看不到任何分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35694731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com