0
votes
0answers
23 views

Git hook whenever a symbolic reference will be updated?

I use git new-workdir and often run into the problem that I mistakenly update a reference that's checked out elsewhere, which makes a mess because the workdir and index both get out of sync. I would ...
1
vote
1answer
104 views

deploying a website/webapp via git/gitolite permissions error

I've setup a development/testing server where developers can push repositories to a remote repo/webserver via gitolite/git. On the repository site everything works well and developers can use the ...
1
vote
0answers
49 views

git hooks — preventing commit to get into topic branch

I need to stop commits to happen if the message is not properly formatted. I know it is possible to do it on the master branch with the pre-receive hook. The problem is that I don't want to do that ...
1
vote
3answers
63 views

How does git abandon changes inside .git directory?

I have made some changes on the .git/hooks directory. Now I wish to abandon those changes and restore .git/hooks to its initial status. Can I do this and how?
1
vote
1answer
41 views

How to identify the name of the branch when receiving a push from local repository?

I want to identify the name of the branch with the incoming push each time it is received from local repo. I am planning to use the branch name in a update hook. Pls let me know how to deal with ...
1
vote
0answers
23 views

How to implement a custom rules for pushing changes on hg or git in a way that is easy to deploy?

Use case: you want to prevent people from pushing to trunk when trunk is in marked as red - in this case you want to ask them to confirm before accepting this. The problem is local .hg/hgrc hooks is ...
5
votes
1answer
76 views

How to version git&gitolite hooks?

Is there a possibility to nicely version and track git hooks? Can I safely have another (nested) git repository under the hook folder on server?