repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tmp-objdir: quote paths we add to alternates
[git.git]
/
t
/
helper
/
test-read-cache.c
blob
2a7990efc31d042121122a17890c623d7714c128
1
#include
"cache.h"
2
3
int
cmd_main
(
int
argc
,
const char
**
argv
)
4
{
5
int
i
,
cnt
=
1
;
6
if
(
argc
==
2
)
7
cnt
=
strtol
(
argv
[
1
],
NULL
,
0
);
8
for
(
i
=
0
;
i
<
cnt
;
i
++) {
9
read_cache
();
10
discard_cache
();
11
}
12
return
0
;
13
}