Git Push Email Notification

by on under Git
1 minute read

Open post-receive hook for selected repository.

In this case, we want to send push email notification when someone push update to https://git.domain.com/repositories/repo/repo.git.

Activate this line or add it if not exist:

		
. /usr/share/git-core/contrib/hooks/post-receive-email
		
	

Next, you have to set where the notifications email will be sent. Open config file for the repository, in this case it is located at /home/user/public_html/git.domain.com/repo/repo.git/config.

Add this code to the config file (We will use git@domain.com as email sender for each git push email notifications):

		
[hooks]
  mailinglist = mail@domain.com, anothermail@domain.com
  envelopesender = git@domain.com
  showrev = "git show -C %s; echo"       
  emailprefix = "[GIT] "
		
	
git, repositories
comments powered by Disqus