Blame


1 8e7bd50a 2019-08-22 stsp REGRESS_TARGETS=checkout update status log add rm diff blame branch tag \
2 2822a352 2019-10-15 stsp ref commit revert cherrypick backout rebase import histedit \
3 4e0a20a4 2020-03-23 tracey integrate stage unstage cat clone fetch tree
4 2ef81b9b 2019-02-10 stsp NOOBJ=Yes
5 0e673013 2019-01-02 stsp
6 0e673013 2019-01-02 stsp checkout:
7 7fb414ae 2020-08-08 stsp ./checkout.sh -q
8 0e673013 2019-01-02 stsp
9 c84d8c75 2019-01-02 stsp update:
10 7fb414ae 2020-08-08 stsp ./update.sh -q
11 c84d8c75 2019-01-02 stsp
12 35dc4510 2019-02-04 stsp status:
13 7fb414ae 2020-08-08 stsp ./status.sh -q
14 35dc4510 2019-02-04 stsp
15 cbd1af7a 2019-03-18 stsp log:
16 7fb414ae 2020-08-08 stsp ./log.sh -q
17 cbd1af7a 2019-03-18 stsp
18 d00136be 2019-03-26 stsp add:
19 7fb414ae 2020-08-08 stsp ./add.sh -q
20 d00136be 2019-03-26 stsp
21 2ec1f75b 2019-03-26 stsp rm:
22 7fb414ae 2020-08-08 stsp ./rm.sh -q
23 2ec1f75b 2019-03-26 stsp
24 95adcdca 2019-03-27 stsp diff:
25 7fb414ae 2020-08-08 stsp ./diff.sh -q
26 2ec1f75b 2019-03-26 stsp
27 c970ea82 2019-07-27 stsp blame:
28 7fb414ae 2020-08-08 stsp ./blame.sh -q
29 c970ea82 2019-07-27 stsp
30 dc5351b4 2019-07-30 stsp branch:
31 7fb414ae 2020-08-08 stsp ./branch.sh -q
32 dc5351b4 2019-07-30 stsp
33 8e7bd50a 2019-08-22 stsp tag:
34 7fb414ae 2020-08-08 stsp ./tag.sh -q
35 8e7bd50a 2019-08-22 stsp
36 d1c1ae5f 2019-08-12 stsp ref:
37 7fb414ae 2020-08-08 stsp ./ref.sh -q
38 d1c1ae5f 2019-08-12 stsp
39 a0275e40 2019-05-09 stsp commit:
40 7fb414ae 2020-08-08 stsp ./commit.sh -q
41 a0275e40 2019-05-09 stsp
42 2c961eb2 2019-08-03 stsp revert:
43 7fb414ae 2020-08-08 stsp ./revert.sh -q
44 2c961eb2 2019-08-03 stsp
45 234035bc 2019-06-01 stsp cherrypick:
46 7fb414ae 2020-08-08 stsp ./cherrypick.sh -q
47 234035bc 2019-06-01 stsp
48 5ef14e63 2019-06-02 stsp backout:
49 7fb414ae 2020-08-08 stsp ./backout.sh -q
50 5ef14e63 2019-06-02 stsp
51 818c7501 2019-07-11 stsp rebase:
52 7fb414ae 2020-08-08 stsp ./rebase.sh -q
53 818c7501 2019-07-11 stsp
54 3ce1b845 2019-07-15 stsp import:
55 7fb414ae 2020-08-08 stsp ./import.sh -q
56 3ce1b845 2019-07-15 stsp
57 0ebf8283 2019-07-24 stsp histedit:
58 7fb414ae 2020-08-08 stsp ./histedit.sh -q
59 0ebf8283 2019-07-24 stsp
60 2822a352 2019-10-15 stsp integrate:
61 7fb414ae 2020-08-08 stsp ./integrate.sh -q
62 2822a352 2019-10-15 stsp
63 fccbfb98 2019-08-03 stsp stage:
64 7fb414ae 2020-08-08 stsp ./stage.sh -q
65 fccbfb98 2019-08-03 stsp
66 ad493afc 2019-08-03 stsp unstage:
67 7fb414ae 2020-08-08 stsp ./unstage.sh -q
68 ad493afc 2019-08-03 stsp
69 01073a5d 2019-08-22 stsp cat:
70 7fb414ae 2020-08-08 stsp ./cat.sh -q
71 c8c71e6e 2020-03-21 stsp
72 c8c71e6e 2020-03-21 stsp clone:
73 7fb414ae 2020-08-08 stsp ./clone.sh -q
74 c8c71e6e 2020-03-21 stsp
75 c8c71e6e 2020-03-21 stsp fetch:
76 7fb414ae 2020-08-08 stsp ./fetch.sh -q
77 c8c71e6e 2020-03-21 stsp
78 4e0a20a4 2020-03-23 tracey tree:
79 7fb414ae 2020-08-08 stsp ./tree.sh -q
80 4e0a20a4 2020-03-23 tracey
81 0e673013 2019-01-02 stsp .include <bsd.regress.mk>