What is a subproject commit?

前端 未结 2 1288
暖寄归人
暖寄归人 2021-01-31 08:13

I\'m trying to add the Laravel files to a Github repo.

I ran

$ git clone https://github.com/laravel/laravel.git

The files show up fine loca

2条回答
  •  梦谈多话
    2021-01-31 08:47

    It means the repository uses Submodules.

    To pull down the Laravel code, try

    git submodule init
    git submodule update
    

    Submodules are notoriously prickly; I recommend reading up on them before working too much on a project that uses them. The link above should be a good starting point.

提交回复
热议问题