问题
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.
回答1:
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
来源:https://stackoverflow.com/questions/30072295/bitbucket-symbol-arrow-meaning