Small question about git submodule.
Assume I have a projectA
, and it have a submodule maybe called moduleA
.
Then I create a tag in projectA
, tagA
, then I may have some new commits for projectA
or moduleA
also, and then I want to go back to the tagA
, using git checkout tagA
.
The problem is projectA
go back to tagA
, but moduleA
not.
Do you know how can make this?