Does Gittyup support git
submodules?
#787
-
As an example, if I modify a submodule, shall it commit the changes to the submodule's repository, as this Stack Overflow answer describes?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It does. Adding one to a repository already managed by Gittyup and then using Gittyup to commit the change appeared to break the repository, but adding it via |
Beta Was this translation helpful? Give feedback.
It does. Adding one to a repository already managed by Gittyup and then using Gittyup to commit the change appeared to break the repository, but adding it via
git submodule add "$repository"
, committing the initial addition viagit add -A && git commit -a --allow-empty-message -m ''
now allows Gittyup to commit changes to the repository without issue.