mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	* Restrict repository indexing by file extension * Use REPO_EXTENSIONS_LIST_INCLUDE instead of REPO_EXTENSIONS_LIST_EXCLUDE and have a more flexible extension pattern * Corrected to pass lint gosimple * Add wildcard support to REPO_INDEXER_EXTENSIONS * This reverts commit 72a650c8e42f4abf59d5df7cd5dc27b451494cc6. * Add wildcard support to REPO_INDEXER_EXTENSIONS (no make vendor) * Simplify isIndexable() for better clarity * Add gobwas/glob to vendors * manually set appengine new release * Implement better REPO_INDEXER_INCLUDE and REPO_INDEXER_EXCLUDE * Add unit and integration tests * Update app.ini.sample and reword config-cheat-sheet * Add doc page and correct app.ini.sample * Some polish on the doc * Simplify code as suggested by @lafriks
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# An example hook script to make use of push options.
 | 
						|
# The example simply echoes all push options that start with 'echoback='
 | 
						|
# and rejects all pushes when the "reject" push option is used.
 | 
						|
#
 | 
						|
# To enable this hook, rename this file to "pre-receive".
 | 
						|
 | 
						|
if test -n "$GIT_PUSH_OPTION_COUNT"
 | 
						|
then
 | 
						|
	i=0
 | 
						|
	while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
 | 
						|
	do
 | 
						|
		eval "value=\$GIT_PUSH_OPTION_$i"
 | 
						|
		case "$value" in
 | 
						|
		echoback=*)
 | 
						|
			echo "echo from the pre-receive-hook: ${value#*=}" >&2
 | 
						|
			;;
 | 
						|
		reject)
 | 
						|
			exit 1
 | 
						|
		esac
 | 
						|
		i=$((i + 1))
 | 
						|
	done
 | 
						|
fi
 |