Git克隆不会复制Windows下的所有文件,但它会在Mac上复制

时间:2016-02-11 14:13:46

标签: git laravel github

我为一个新项目创建了一个git repo,其中一个分支是用MacOs系统制作的(这是一个Laravel项目)。
今天我正在尝试git clone Windows系统上的回购。

奇怪的是,我有很多丢失的文件,如图片,视图和布局。

有人知道为什么吗?

我已经使用其他mac进行了一些测试,git clone命令工作正常。

1 个答案:

答案 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>