141
128

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gitのsubmoduleに変更を加えるとdiffが生じるのを無視する

Posted at

gitのsubmoduleに変更が加わると、diffが生じてしまいますが、commitできなくて
気持ち悪いです

diff --git a/bootstrap b/bootstrap
--- a/bootstrap
+++ b/bootstrap
@@ -1 +1 @@
-Subproject commit 3b3dd3ac3c7b69d02406ede69bffcc4ee8a1ed6b
+Subproject commit 3b3dd3ac3c7b69d02406ede69bffcc4ee8a1ed6b-dirty

これを無視するには、$project/.gitmodulesのファイルに、ignore = dirtyを追加します

[submodule "bootstrap"]
	path = bootstrap
	url = git://github.com/twitter/bootstrap.git
	ignore = dirty

これでdiffが出なくなって精神衛生的に良くなります。

141
128
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
141
128

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?