What is a subproject commit?

GitGithub

Git Problem Overview


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 locally but do not show up when I push to github:

enter image description here

The commit shows:

enter image description here

How can I add the laravel files to my github repo? Also, what is a subproject commit?

Git Solutions


Solution 1 - Git

A submodule commit is a gitlink, special entry recorded in the index, created when you add a submodule to your repo;

It records the SHA1 currently referenced by the parent repo.

A git submodule update --init is enough to populate the laravel subdirectory in your repo.

Once it is filled, note that your submodule repo is in a detached HEAD mode.

As shown here, when switching branches in the parent repo, your submodule gitlink will change accordingly, but your submodule content won't change until you make again a git submodule update (after the git checkout)

Solution 2 - Git

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionConnor LeechView Question on Stackoverflow
Solution 1 - GitVonCView Answer on Stackoverflow
Solution 2 - GitChrisView Answer on Stackoverflow