Tagged Questions
0
votes
1answer
100 views
Git pre-receive hook and submodules
I have a pre-receive hook on a remote bare Git repo that will run tests, compress some files and generate a build ID when I do from my laptop:
$ git push production master
The simplified version ...
1
vote
0answers
28 views
How can I get a list of all modified files for submodules with git? [duplicate]
Possible Duplicate:
git: list of all changed files including those in submodules
I have a super repository that has many submodules that are regularly being updated. I have a post-receive ...
1
vote
1answer
72 views
How can I init/update git submodules in a remote?
I often use this pattern for easy deployment of websites:
I have a bare repo, which I push/pull to from my computer and this bare repo has a post-update hook that automatically does a pull in another ...
10
votes
1answer
1k views
How can I have linked dependencies in a git repo?
In my scripts, I often use libraries (mine or others') that have their own repos. I don't want to duplicate those in my repo and get stuck with updating them every time a new version comes out.
...
0
votes
1answer
201 views
How to write an update hook for git submodules?
I would like to copy some files in the submodules in my "vendor/assets" directory to another directory -- "public/assets." I heard about update hooks but I am not sure if they work for submodules. I ...
1
vote
1answer
222 views
What githooks are called on submodule update?
So here's the situation. I have a git repository with multiple submodules. Both the top level directory and all of the submodules contain Visual Studio 2010 solutions.
The top level repository ...