Blob


1 REGRESS_TARGETS=checkout update status log add rm diff blame branch tag \
2 ref commit revert cherrypick backout rebase import histedit \
3 integrate stage unstage cat clone fetch tree
4 NOOBJ=Yes
6 checkout:
7 ./checkout.sh -q
9 update:
10 ./update.sh -q
12 status:
13 ./status.sh -q
15 log:
16 ./log.sh -q
18 add:
19 ./add.sh -q
21 rm:
22 ./rm.sh -q
24 diff:
25 ./diff.sh -q
27 blame:
28 ./blame.sh -q
30 branch:
31 ./branch.sh -q
33 tag:
34 ./tag.sh -q
36 ref:
37 ./ref.sh -q
39 commit:
40 ./commit.sh -q
42 revert:
43 ./revert.sh -q
45 cherrypick:
46 ./cherrypick.sh -q
48 backout:
49 ./backout.sh -q
51 rebase:
52 ./rebase.sh -q
54 import:
55 ./import.sh -q
57 histedit:
58 ./histedit.sh -q
60 integrate:
61 ./integrate.sh -q
63 stage:
64 ./stage.sh -q
66 unstage:
67 ./unstage.sh -q
69 cat:
70 ./cat.sh -q
72 clone:
73 ./clone.sh -q
75 fetch:
76 ./fetch.sh -q
78 tree:
79 ./tree.sh -q
81 .include <bsd.regress.mk>