I have a repository with one submodule.
But I would like the commits made in the submodule to be informed in my tag used in the main repository.
Is it possible to perform this procedure?
Note: I use the Jenkins tool for build, deploy and it has a stage for creating tags.
I have been trying the commands below:
This command doesn't put the commits on tag
git submodule update --init --recursive --remote
This command return the message: Entering 'SUBMODULE/FOLDER'
git submodule foreach --recursive 'git fetch --tags --force'