mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
12 lines
196 B
Text
12 lines
196 B
Text
|
sha1_file ( ) {
|
||
|
echo "$*" | sed "s#..#.git/objects/&/#"
|
||
|
} &&
|
||
|
|
||
|
remove_object ( ) {
|
||
|
file=$(sha1_file "$*") &&
|
||
|
test -e "$file" ?!AMP?!
|
||
|
rm -f "$file"
|
||
|
} ?!AMP?!
|
||
|
|
||
|
sha1_file arg && remove_object arg
|