mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
12 lines
288 B
Text
12 lines
288 B
Text
|
# LINT: start of block chained to preceding command
|
||
|
echo nobody home && {
|
||
|
test the doohicky
|
||
|
right now
|
||
|
} &&
|
||
|
|
||
|
# LINT: preceding command pipes to block on same line
|
||
|
GIT_EXTERNAL_DIFF=echo git diff | {
|
||
|
read path oldfile oldhex oldmode newfile newhex newmode &&
|
||
|
test "z$oh" = "z$oldhex"
|
||
|
}
|