3

What does the arrow mean? I'm not new to git or bitbucket but I think I may have messed something up in my inital commit and I need help to resolve this.

The folder in my local repo is not empty, but pulling it down to another location the folder is. Is it a link? Not on my local repo.

The folder is a part of the vendor-folder (as shown) and the silex-app was installed through composer.

This would be solved if I had control over the webserver but I don't - it's on a hosting web site.

Any and all help appriciated.

screen dump from bitbucket.org

mira_mayhem
  • 155
  • 2
  • 13

1 Answers1

5

It's a git submodule. To initialize all your submodules in your local clone, you can use the following command:

git submodule update --init --recursive

See 'git submodule update --init --recursive' VS 'git submodule foreach --recursive git submodule update --init' or Git update submodule recursive

Community
  • 1
  • 1
knittl
  • 246,190
  • 53
  • 318
  • 364