Subject: [PATCH for submodule ideas wiki] `git commit` to warn about broken submodule states configuration

Subsystems: the rest

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

Subject: [PATCH for submodule ideas wiki] `git commit` to warn about broken submodule states configuration

From: Stefan Beller <hidden>
Date: 2016-06-15 23:08:46

---

  Hi Jens,
 
  I cannot find the edit button in the wiki[1] any more.
  Please apply this patch documenting another idea.
  
  Thanks,
  Stefan
  
  [1] https://github.com/jlehmann/git-submod-enhancements/wiki

 Home.textile | 11 +++++++++++
 1 file changed, 11 insertions(+)
diff --git a/Home.textile b/Home.textile
index 152ad04..3b00496 100644
--- a/Home.textile
+++ b/Home.textile
@@ -47,6 +47,17 @@ h2. Submodule related bugs to fix
 * E.g. @git log <submodule>/@ and @git diff <rev> <submodule>/@ do not produce any output while dropping the '/' at the end makes them work as expected.
 * @git add@ does not honour the submodule.&lt;name&gt;.ignore settings
 * @git submodule add@ messes up paths from nested submodules, see ("thread on mailing list":http://thread.gmane.org/gmane.comp.version-control.git/288130)
+* @git commit@ can be cautious about submodule related commits. That is if a commit contains a change to the .gitmodules file, make sure that the corresponding gitlink is present (either already in the tree or newly added). IIUC Jonathan correctly a submodule which is configured in .gitmodules, but not present as a gitlink is considered broken, which we may want to avoid in the first place. When implementing this, we need to take care of historical mistakes being handled correctly as well as a flag to commit, which overwrites the potential warning. The gitmodules file unlike other in-tree configuration files (.gitignore, .gitattributes, .mailmap) have a 1:1 mapping so the existence of the gitlink is strongly expected. (Counter example with .gitignore: Ignoring *.exe doesn't expect any .ex
 e file to be there). I imagine this to roughly work as:
+
+bc.     $ git add .gitmodules
+    $ git commit -m "add submodule to .gitmodules, but not as gitlink"
+      Warning: Not committing as this would break submodule consistency. Use
+      --force-submodules to commit the broken submodule state.
+    $ echo $?
+      1 # fail
+    $ git commit --force-submodules -m "add submodule to .gitmodules, but not as gitlink"
+    $ echo $?
+      0 # Success
 
 *[[Ideas]]*
 
-- 
2.7.0.rc0.42.g8e9204f.dirty

Re: Subject: [PATCH for submodule ideas wiki] `git commit` to warn about broken submodule states configuration

From: Jens Lehmann <hidden>
Date: 2016-06-15 23:08:47

Am 16.03.2016 um 22:07 schrieb Stefan Beller:
---

   Hi Jens,

   I cannot find the edit button in the wiki[1] any more.
Oops. After you mentioned recently that every GitHub user had write
permissions to the Wiki I restricted it to be writable for known
collaborators and also added you to this list. But it looks like I
added the other Stefan Beller registered on GitHub instead. That
should be fixed know, please let me know when the edit button still
does not show up for you.
   Please apply this patch documenting another idea.
Sure, thanks for the patch! Applied and pushed.
quoted hunk
   Thanks,
   Stefan

   [1] https://github.com/jlehmann/git-submod-enhancements/wiki

  Home.textile | 11 +++++++++++
  1 file changed, 11 insertions(+)
diff --git a/Home.textile b/Home.textile
index 152ad04..3b00496 100644
--- a/Home.textile
+++ b/Home.textile
@@ -47,6 +47,17 @@ h2. Submodule related bugs to fix
  * E.g. @git log <submodule>/@ and @git diff <rev> <submodule>/@ do not produce any output while dropping the '/' at the end makes them work as expected.
  * @git add@ does not honour the submodule.&lt;name&gt;.ignore settings
  * @git submodule add@ messes up paths from nested submodules, see ("thread on mailing list":http://thread.gmane.org/gmane.comp.version-control.git/288130)
+* @git commit@ can be cautious about submodule related commits. That is if a commit contains a change to the .gitmodules file, make sure that the corresponding gitlink is present (either already in the tree or newly added). IIUC Jonathan correctly a submodule which is configured in .gitmodules, but not present as a gitlink is considered broken, which we may want to avoid in the first place. When implementing this, we need to take care of historical mistakes being handled correctly as well as a flag to commit, which overwrites the potential warning. The gitmodules file unlike other in-tree configuration files (.gitignore, .gitattributes, .mailmap) have a 1:1 mapping so the existence of the gitlink is strongly expected. (Counter example with .gitignore: Ignoring *.exe doesn't expect any .
 exe file to be there). I imagine this to roughly work as:
+
+bc.     $ git add .gitmodules
+    $ git commit -m "add submodule to .gitmodules, but not as gitlink"
+      Warning: Not committing as this would break submodule consistency. Use
+      --force-submodules to commit the broken submodule state.
+    $ echo $?
+      1 # fail
+    $ git commit --force-submodules -m "add submodule to .gitmodules, but not as gitlink"
+    $ echo $?
+      0 # Success

  *[[Ideas]]*
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help