Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,560,360
Community Members
 
Community Events
185
Community Groups

I can't delete my sub-module

Hello,

I accidentally created my submodule at the wrong location. I want to delete it and re-add it correctly. However, I can't figure out how to delete it.

Capture.PNG

Any help would be appreciated.
Thank you

2 answers

1 accepted

0 votes
Answer accepted

For anyone else coming by later, I ended up finding this ...

"Since git 1.8.5, git mv old/submod new/submod works as expected and does all the plumbing for you. You might want to use git 1.9.3 or newer, because it includes fixes for submodule moving."

via https://stackoverflow.com/questions/4604486/how-do-i-move-an-existing-git-submodule-within-a-git-repository

0 votes
Ana Retamal
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Dec 19, 2018

Hi Lester,

The best way to completely remove a submodule would be using the command line, you can follow the steps:

  1. Delete the relevant section from the .gitmodules file.
  2. Stage the .gitmodules changes git add .gitmodules
  3. Delete the relevant section from .git/config.
  4. Run git rm --cached path_to_submodule (no trailing slash).
  5. Run rm -rf .git/modules/path_to_submodule
  6. Commit git commit -m "Removed submodule <name>"
  7. Delete the now untracked submodule files
    rm -rf path_to_submodule

You can also find different approaches in this thread.

Hope that helps!

Ana

Hi @Ana Retamal,

I have a couple follow up questions.

1) My real issue is that I added the submodule to the incorrect path. I was planning on deleting the submodule and then re-creating it. Is it instead possible to move the submodule? I noticed the paths in the .gitmodules; can I edit those? (FYI, I tried this before asking and it didn't work, but maybe I am doing something wrong)

2) I have multiple submodules, and after editing the .gitmodules file, by hand, all my other submodules disappear from sourcetree. Is that expected behavior? I have not completed your steps because I wanted to wait for an answer to this before proceeding too far.

Thank you for the help
Lester

Hi @Ana Retamal,

I was wondering if you had any info regarding those follow up questions I posted above? I have still held off from continuing the process, because I am not entirely sure if #2 is going to cause more trouble for me or not.

Thank you
Lester

Hi @Ana Retamal,

I apologize for the repeated pings. I speculate that maybe this was lost over the holiday breaks. I am having issues with your instructions, and had some follow up questions.

1) My real issue is that I added the submodule to the incorrect path. I was planning on deleting the submodule and then re-creating it. Is it instead possible to move the submodule? I noticed the paths in the .gitmodules; can I edit those? (FYI, I tried this before asking and it didn't work, but maybe I am doing something wrong)


2) I have multiple submodules, and after editing the .gitmodules file, by hand, all my other submodules disappear from sourcetree. Is that expected behavior? I have not completed your steps because I wanted to wait for an answer to this before proceeding too far.

Thank you for the assistance
Lester

if you use git mv -k you can move whole directories that contain multiple git submodules

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events