We're trying to switch from SVN to GIT, therefore I'm evaluating GIT submodules. Since I always want to pull the latest version of submodules I followed this answer and set the following repo config value:
git config --local submodule.recurse true
I checked the appropriate .git\config
file, and the value is set to true
.
If I perform a git status
I don't see any unstaged changes. Therefore I'm not able to commit and push the change. I want to share this behavior (between our developers) on repo level.
Is it possible to push such repo configs to the remote?
I also published the repo to GitHub.
Thx.