Blob


1 REGRESS_TARGETS=checkout update status log add rm diff blame branch commit \
2 revert cherrypick backout rebase import histedit stage unstage
3 NOOBJ=Yes
5 checkout:
6 ./checkout.sh
8 update:
9 ./update.sh
11 status:
12 ./status.sh
14 log:
15 ./log.sh
17 add:
18 ./add.sh
20 rm:
21 ./rm.sh
23 diff:
24 ./diff.sh
26 blame:
27 ./blame.sh
29 branch:
30 ./branch.sh
32 commit:
33 ./commit.sh
35 revert:
36 ./revert.sh
38 cherrypick:
39 ./cherrypick.sh
41 backout:
42 ./backout.sh
44 rebase:
45 ./rebase.sh
47 import:
48 ./import.sh
50 histedit:
51 ./histedit.sh
53 stage:
54 ./stage.sh
56 unstage:
57 ./unstage.sh
59 .include <bsd.regress.mk>