我为一个新项目创建了一个git repo,其中一个分支是用MacOs系统制作的(这是一个Laravel项目)。
今天我正在尝试git clone
Windows系统上的回购。
奇怪的是,我有很多丢失的文件,如图片,视图和布局。
有人知道为什么吗?
我已经使用其他mac进行了一些测试,git clone
命令工作正常。
答案 0 :(得分:0)
您的代码可能位于不同的分支中,因此您必须签出所需的分支。
List<String> foo = foo();
// bad, casting Object[] as String[]
bar((String[])foo.toArray());
// good, populating a String[] of your List's size with your List's elements
bar(foo.toArray(new String[foo.size()]));
# update your local repo
git fetch --all --prune
# list all your branches
git branch -a
# checkout the desired branch
git checkout <branch name>