Make change to a git submodule, and keep the changes

I've cloned a git submodule of one of my libraries into a project I'm working on. The thing is that, after cloning, I need to change some lines in the cloned submodule, but I don't want to push those changes into the original repository .

I want those changes to stay in the superproject. Is this possible? How can I achieve that?

EDIT: As @GoZoner said, basically its:

  • git clone foo;
  • cd foo;
  • git submodule init;
  • git submodule update;
  • cd path/to/submodule;
  • git checkout master;
  • Make changes to the submodule
  • git commit -am "Something";
  • git push origin (the superproject);
  • Then when I clone the superproject in another computer (up to step 4), I want those changes to be saved, in the superproject.


    I think you need to relax the 'no commit to submodule' constraint. There are two options:

  • Commit your submodule changes to a submodule branch. It is your team's branch and it is where your team put your submodule changes. When somebody clones the super project and updates the submodule they get the content of your team's branch.
  • Clone the submodule repository 'right next to' your super project repository and initialize the submodule to point to your clone. Then when you commit changes to the submodule they are committed to your clone. Anybody who clones the super project gets submodule content from your submodule clone.
  • Otherwise, I don't see a way to achieve your desire.


    You can checkout a separate branch for your changes. Don't push that branch up. Changes that you do want to push, make that on one of the original branches. Merge that branch into your special branch that you don't push up. Don't do any other work on your special branch as you would then have to merge the other way. You can do that but it gets complicated.

    链接地址: http://www.djcxy.com/p/16432.html

    上一篇: 在Windows Vista批处理文件(.bat)中,长命令分成多行

    下一篇: 对git子模块进行更改,并保留更改