Linus said:
    "Let's see what else I forgot.."
Not that many, but here they are.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			265 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
object=${2:-$(cat .git/HEAD)}
 | 
						|
type=$(git-cat-file -t $object) || exit 1
 | 
						|
( echo -e "object $object\ntype $type\ntag $1\n"; cat ) > .tmp-tag
 | 
						|
rm -f .tmp-tag.asc
 | 
						|
gpg -bsa .tmp-tag && cat .tmp-tag.asc >> .tmp-tag
 | 
						|
git-mktag < .tmp-tag
 | 
						|
#rm .tmp-tag .tmp-tag.sig
 |