mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 13:28:25 +00:00 
			
		
		
		
	* Add API for manipulating Git hooks Signed-off-by: Segev Finer <segev@codeocean.com> * Replace code.gitea.io/sdk with PR branch temporarily for CI * Switch back to code.gitea.io/sdk@master * Return 403 instead of 404 on no permission to edit hooks in API * Add tests for Git hooks API * Update models/repo_list_test.go Co-Authored-By: segevfiner <segev208@gmail.com> * Update models/repo_list_test.go Co-Authored-By: segevfiner <segev208@gmail.com> * empty line
		
			
				
	
	
		
			16 lines
		
	
	
		
			478 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			478 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# An example hook script to check the commit log message taken by
 | 
						|
# applypatch from an e-mail message.
 | 
						|
#
 | 
						|
# The hook should exit with non-zero status after issuing an
 | 
						|
# appropriate message if it wants to stop the commit.  The hook is
 | 
						|
# allowed to edit the commit message file.
 | 
						|
#
 | 
						|
# To enable this hook, rename this file to "applypatch-msg".
 | 
						|
 | 
						|
. git-sh-setup
 | 
						|
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
 | 
						|
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
 | 
						|
:
 |