Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7712331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T01:36:13+00:00 2026-06-01T01:36:13+00:00

I have a git repo with a dev and a master branch. Now I

  • 0

I have a git repo with a dev and a master branch. Now I am trying to use a different revision of a submodule in each branch. So for example I do this:

git checkout master
cd submodule
git checkout v1.0
cd ..
git commit -a -m "now using submodule v1.0"
git checkout dev
cd submodule
git checkout v2.0
cd ..
git commit -a -m "let's try submodule v2.0"

Now after that I checkout the master branch and it seems the submodule in the master branch is also pointing to the v2.0 commit instead of v1.0.

I’ve read quite a lot about git submodules, but it still seems a bit abstract to me. Could anybody explain how to use a submodule properly in this particular case? (git version 1.7.3.1)

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T01:36:14+00:00Added an answer on June 1, 2026 at 1:36 am

    Just changing branches in the super-project isn’t going to change the contents in the submodule; the branch change will only change the super-project’s commit reference for its submodule. You need to do:

    git submodule update
    

    after checking out a branch in the super-project. The ‘update’ will change the submodule to reference the proper commit. Here is an example:

    ebg@taiyo(84)$ git checkout master
    M test1
    Switched to branch 'master'
    ebg@taiyo(85)$ git submodule update
    Submodule path 'test1': checked out '16aff6eed3998f14eb96b4f61666b47160de0e6b'
    ebg@taiyo(89)$ git checkout top-other
    M test1
    Switched to branch 'top-other'
    ebg@taiyo(90)$ git submodule update
    Submodule path 'test1': checked out 'af33fca078dbb1fa415f9ea7fafb1b92cad1c6ae'
    ebg@taiyo(91)$ git status
    # On branch top-other
    nothing to commit (working directory clean)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a git repo, and a revision code I want it to get
I have a git repo which has a few branches - there's the master
I have a git clone/repo on a development server, but I am now moving
I have a git-cpan-init of a repo which yielded a different root node from
In my current repo I have the following output: $ git branch -a *
I have a repo with 3 branches: master, Stable, and dev. I made a
I have a git repo as my master project. It has some sub-modules added
I recently set up dev/staging/production environment on OSX Lion. I have a git repo
I have a a remote git repo and a local clone. Let's say I
I have created a bare git repo (lets call it repo #1) and cloned

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.