mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-28 08:31:25 +00:00 
			
		
		
		
	 e11a8999b5
			
		
	
	e11a8999b5
	
	
	
		
			
			* license : add AUTHORS * authors : update * scipts : add LICENSE and gen-authors.sh to sync
		
			
				
	
	
		
			10 lines
		
	
	
		
			337 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			337 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| printf "# date: $(date)\n" > AUTHORS
 | |
| printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" >> AUTHORS
 | |
| 
 | |
| git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' | sort >> AUTHORS
 | |
| 
 | |
| # if necessary, update your name here. for example: jdoe -> John Doe
 | |
| sed -i '' 's/^jdoe/John Doe/g' AUTHORS
 |