Bitbucket symbol (arrow), meaning

What does the arrow mean? I am not new to git or bitbucket, but I think that maybe I messed something up in my initiative and I need help to fix this issue.

The folder in my local repo is not empty, but moves it to another location where the folder is. This is a link? Not on my local repo.

The folder is part of the vendor folder (as shown) and silex was installed via composer.

This would be solved if I had control over the web server, but I don't - on the hosting website.

Any and all help is appriciated.

screen dump from bitbucket.org

+2


source to share


1 answer


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

git submodule update --init --recursive

      



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

+4


source







All Articles