@darrion.kuhn
If you have made changes to a submodule that you want to remove from a Git commit, you can use the following steps:
1 2 |
git submodule update -- init git submodule foreach git reset --hard |
1
|
git submodule status |
1
|
git add <submodule_path> |
1
|
git commit -m "Commit message without submodule changes" |