Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I do a classic update to git using the following commands:

git add --all
git commit -am "COMMENT"
git push origin master

And when I go to check the changes on gitlab web I have the following icon :

enter image description here

It looks like a submodule. On the project I have some files in the bin directory, the folder is empty when I do a git clone

How can I disable the submodule for every directory ?

When I try to remove the module doing :

git submodule deinit path/to/bin

I have the following error

No submodule mapping found in .gitmodules for path 'path/to/bin'
question from:https://stackoverflow.com/questions/66047459/git-how-to-disable-submodule-from-the-entire-project

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...