Blob


1 REGRESS_TARGETS=checkout update status log add rm diff blame branch ref 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 ref:
33 ./ref.sh
35 commit:
36 ./commit.sh
38 revert:
39 ./revert.sh
41 cherrypick:
42 ./cherrypick.sh
44 backout:
45 ./backout.sh
47 rebase:
48 ./rebase.sh
50 import:
51 ./import.sh
53 histedit:
54 ./histedit.sh
56 stage:
57 ./stage.sh
59 unstage:
60 ./unstage.sh
62 .include <bsd.regress.mk>