我遇到了一个git分支问题,我试图打开另一个分支,其中有一些已更改的文件和已更改的目录,但我无法在本地存储库中看到这些更改。
在主人身上我有:
dir1 / files
dir2 / files
在分支机构上我有
new_dir1 / files
dir2 / files
dir3 / files
当我在终端上看到命令git fetch && git checkout myBranch
时
Checking out files: 100% (31012/31012), done.
Switched to branch 'featured_phase3'
Your branch is up-to-date with 'origin/myBranch'.
但dir1未重命名为new_dir1且未下载dir3。
当然,我错过了一些东西,因为我是git的新手
任何帮助将不胜感激
Thxs