Tagged Questions
1
vote
2answers
109 views
How to make git ignore changes to submodules by default
Since gitmodules were introduced in Git, I like to add them like so:
[submodule "actionbarsherlock"]
path = actionbarsherlock
url = git://github.com/JakeWharton/ActionBarSherlock.git
ignore = dirty
...
5
votes
2answers
2k views
git submodule update with other user
I'm logged in as user A on my machine, but my repo is accessible through username B on the server that I pull from. The .gitmodules file has url = ssh://domain.com/abc/def.git.
How can I configure ...
25
votes
7answers
7k views
Git: can I suppress listing of 'modified content'/dirty submodule entries in status, diff, etc?
Somewhen (around the 1.6.x releases, I think) git became aware of changes inside submodules. That only serves to annoy me:
$ git status vendor | grep modified:
# modified: vendor/rails ...