The git-post-receive tag has no wiki summary.
10
votes
2answers
570 views
Git: post-receive email hook to show an html formatted color diff?
I've got a diff e-mail sending using Git's post-receive e-mail hook (thanks to this SO post) but the e-mail that it sends is just plain text. I'd like something a big more colorful and well formatted.
...
9
votes
2answers
3k views
Git post-receive hook not working
We're using git with a central repo (using Gitosis). I've created a post-receive hook to generate an email to the dev mailing list whenever changes are pushed to the central repo, and to generate ...
8
votes
4answers
3k views
Git Post-Receive Hook for Website Staging
I'm trying to set up Git for staging my website so that I can git pull to get the current version to work on locally and then git push to push the changes to the remote server. I've got it set up so ...
6
votes
1answer
85 views
Are concurrent git pushes always safe if the second push only has fast-forwards from the first push?
I want to automatically push commits in the post-receive hook from a central repo on our LAN to another central repo in the cloud. The LAN repo is created using git clone --mirror ...
6
votes
2answers
459 views
Not able to detect branch from Git post-receive hook
I've got a post receive hook setup on the remote repo that tries to determine the branch name of the incoming push as follows:
$branch = `git rev-parse --abbrev-ref HEAD`
What i'm finding, though, ...
5
votes
3answers
1k views
Git for Websites / post-receive / Separation of Test and Production Sites
I'm using Git to manage my website's source code and deployment, and currently have the test and live sites running on the same box. Following this resource http://toroid.org/ams/git-website-howto ...
4
votes
2answers
164 views
Want git post receive hook to make new commit and push
I would like my post-receive hook to be responsible for updating a version file in the repo
itself, under certain conditions. So, suppose I have a file version.txt in my repository,
I would like the ...
4
votes
2answers
674 views
multiple commands are not working in git post-receive
I'm using git with trac. After push I want two thing to be done:
Sending email to development team with diff
If there is some special phrase in commit message (like "see #1"), then I want the commit ...
3
votes
1answer
62 views
replace styles.less with styles.css via git post-recieve
i have a local development web with an index.html which is using:
<!-- LESS -->
<link rel="stylesheet/less" type="text/css" href="css/styles.less" />
<script ...
3
votes
1answer
413 views
Jenkins and GitHub webhook: HTTP 403
I have a GitHub repository which I would like to have notify Jenkins of new commits via a post-receive hook. I've installed the GitHub plugin into Jenkins and have allowed for Jenkins to manage it's ...
3
votes
1answer
120 views
Why does `rm -rf` behave differently when used in a git post-receive hook as opposed to shell?
I'm using this example on publishing a website w/ git post receive hooks.
The hook pretty much clones the bare repo into a temporary directory, and after generating the site, removes that temporary ...
3
votes
2answers
390 views
post-recieve hook for gitosis
I'm running Gitosis and want my committed work to be staged in my html directory.
I was trying to use this approach to set GIT_WORKING_TREE to my html directory, but I'm getting the error remote: ...
2
votes
1answer
65 views
Git : fatal: exec hooks/post-receive failed
I have a remote created with git --bare init.
When I push I get:
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (4/4), 368 bytes, done.
...
2
votes
3answers
308 views
git post-receive hook can not jump back into original cwd
When pushing to our shared bare repository (over ssh), the post-commit does not work properly.
It is pretty common as I found out in many threads here and it works fine for two other repositories on ...
2
votes
1answer
124 views
Why can't my post-receive hook run a virtualenv source command?
I have a post-receive hook that is running as user 'git'. I have a virtualenv /python/ve//bin/activate that is readable by git. Running:
source /python/ve/<name>/bin/activate
works fine for a ...
2
votes
2answers
761 views
reset hard on git push
I have a post-receive hook script sitting on the remote repo I am pushing to that does a git reset --hard
Something like this:
$ git push opal
Counting objects: 74, done.
Delta compression using up ...
2
votes
4answers
1k views
Git post-receive hook not working
My setup is a windows XAMPP server, with cURL enabled, and Git and Hudson installed. Hudson polls Git every minute to look for changes, and if it finds them, it creates a build. I use this build as my ...
2
votes
4answers
734 views
Git post-receive - how to check if pushed branch is merged with master
In our team we are usually pushing all tasks into separate branches, and after that release-manager review those branches and merge them into 'master' branch
Sometimes team-members forget to merge ...
1
vote
0answers
89 views
Post-receive, request php script, pull git repo
I have a PHP script git.php on my web-server with only a few lines, one of the lines uses shell_exec() to run a
'git pull ssh://user@X.com/repo.git'
(Please note, you cannot push to the webserver, ...
1
vote
1answer
105 views
Git post-receive over HTTP in OS X
My setup is:
1. OS X runnig apache server for Git storage.
2. My directory for Git projects is here: /Library/WebServer/Documents/CI
3. I've followed this tutorial: ...
1
vote
2answers
38 views
Pushing to DEV server using a post receive hook works great - but then can't commit remote changes
Very new to git and after a bit of reading have setup the following workflow:
Github repo
Local repos (workstation and laptop)
Dev Server - post receive hook pushes from a bare repo to the directory ...
1
vote
2answers
74 views
git post-receive hook and prevent tags pushing
In my GIT's post-receive hook I need to avoid execution of some code if a tag is pushed.
I tried using the env variable $refname but it looks empty.
Any idea?
Thanks
Randomize
1
vote
1answer
109 views
Git CHMOD post-receive hook
I'm using a bare remote repository on my webserver with a post-receive hook that will automatically push my files in the public_html directory.
The problem is, I'm using codeigniter and the index.php ...
1
vote
0answers
464 views
How to use post-receive hook after git push to gitolite server?
I tried to use post-receive hook to make a new build on Jenkins after every push to the gitolite server, BUT it doesn't work automatically after push and I need to execute post-receive file manually ...
1
vote
2answers
356 views
Git: making pushes to non-bare repositories safe
I could use some guidance from the git experts out there regarding making push operations to non-bare repositories safe. Basically I have a plan about how to do this, and could use some advice about ...
1
vote
1answer
133 views
Call post-receive hook in git in mirorred repo
I'm using trac and I need to call post-receive hook server where trac is installed. Main repository is located in github, so I cloned github repo to local server
git clone --mirror ** **
and when ...
1
vote
1answer
263 views
How to track post-receive hook in gitosis
Is there are way of managing a post-receive hook via gitosis-admin so that changes to it can be tracked?
I gitosis on a remote server with a couple of repositories that I can push to. The 2 ...
1
vote
1answer
93 views
need to parse refname in post-receive script
In my post-receive hook, I would like to get the branch the user is committing on, store in a variable, and pass it to a web service (Hudson build system). Can I use the refname passed into STDIN ...
1
vote
2answers
276 views
How to properly use post-receive hook?
My directory structure is:
~/parent.git/.git/hooks/post-receive
The post-receive hook looks like:
#!/bin/sh
git checkout -f
When I push into parent.git, the script does not run. I can't figure ...
1
vote
1answer
84 views
How can I get rid of the 'remote: ' messages that appear on every line returned by post-receive in git?
I've created a post-receive hook in git. The hook output messages to the screen, which are sent back to the git client doing the push, and outputted back.
How can I get rid of the 'remote: ' text ...
0
votes
1answer
14 views
Problems with sending commit data on post-receive hook via curl (git)
The aim of my project is to log every commit made by a developer into mongodb. I have set up a
nodejs listener that will persist data received on a post to mongo.
I am running a gitolite server, and ...
0
votes
1answer
57 views
git post-receive not executed
I have setup the following post-receive:
$ cat .git/hooks/post-receive
#!/bin/env sh
git checkout -f
which is executable:
$ l .git/hooks/post-receive
-rwx--x--x 1 nils nils 30 11. Jan 13:17 ...
0
votes
1answer
60 views
How to access to repository file with GIT in post-receive hook
I have this scenario with GIT:
I want to "do something" with a specific file when it is changed in a push.
For example a .sql file must be dumped in a db if it's changed.
I'm using 'post-receive' ...
0
votes
1answer
35 views
How to discover a file is changed in GIT during a push
when I push something to my GIT repository, the post-receive hook is triggered and executes some scripts. Is it possible doing something before the execution these scripts if (and only if) a specific ...
0
votes
1answer
251 views
How do I setup multiple configs for gitolite - post-receive hook email notification?
I have the post-receive hook running with a configuration in gitolite that emails a group when any files change in a repo on a certain branch. Now, I have a request to setup email notification for a ...
0
votes
0answers
47 views
Make outside POST requests to an app that is on Intranet?
I have a project I'm running on an Intranet within my school's network. I'm using CIJoe for a CI, and I would like to set up a post-receive hook on Github to point to Joe. However, because it's on ...
0
votes
0answers
64 views
How can a post-receive hook written in perl get the branch name?
I have a post-receive hook that is written in perl. I need to be able to figure out which branch is being pushed to. How can I do this? I tried looking at @ARGV and $ARGV[2] without success.
0
votes
2answers
58 views
post-recieve not invoked when pushing from GIT Bash on Windows
Hey,
I have a post-receive hook enabled on my remote repository, works fine when pushing tags\commit upstream from Linux Machine. ( although I have to sudo when pushing ) .
However - when pushing ...
0
votes
1answer
70 views
Want Git post receive hook to detect certain file types
I would like my post receive hook to run a certain script whenever
files of a certain type, *.hbm.xml are pushed to the server.
Motivation: I want to rev my database schema version number whenever
...