Hi Julius,

On Mon, Apr 1, 2019 at 10:25 PM Julius Smith <[email protected]> wrote:

> However, what happens if the submodule code gets edited?
>

By default, the submodule is always a snapshot (in "detached HEAD" state)
at whatever revision was current when you created it. If you need to update
the revision, you do that with the usual git commands, just don't forget to
also commit and push in the parent module. I think that something like this
should do the trick (from https://github.com/tj/git-extras/pull/80):

cd submodule_name
git checkout master && git pullcd ..
git add submodule_name
git commit -m "updating submodule to latest"


HTH,
Albert

-- 
Dr. Albert Gr"af
Computer Music Research Group, JGU Mainz, Germany
Email:  [email protected]
WWW:    https://plus.google.com/+AlbertGraef
_______________________________________________
Faudiostream-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/faudiostream-devel

Reply via email to