Blame


1 8e7bd50a 2019-08-22 stsp REGRESS_TARGETS=checkout update status log add rm diff blame branch tag \
2 6f04a73d 2022-09-20 mark ref commit revert cherrypick backout rebase init import histedit \
3 cab5dc8b 2022-05-10 stsp integrate merge stage unstage cat clone fetch send tree patch pack \
4 e9ce266e 2022-03-07 op cleanup
5 2ef81b9b 2019-02-10 stsp NOOBJ=Yes
6 0e673013 2019-01-02 stsp
7 11f4fa81 2020-10-01 stsp GOT_TEST_ROOT=/tmp
8 11f4fa81 2020-10-01 stsp
9 0e673013 2019-01-02 stsp checkout:
10 743f0d3e 2020-10-01 stsp ./checkout.sh -q -r "$(GOT_TEST_ROOT)"
11 0e673013 2019-01-02 stsp
12 c84d8c75 2019-01-02 stsp update:
13 743f0d3e 2020-10-01 stsp ./update.sh -q -r "$(GOT_TEST_ROOT)"
14 c84d8c75 2019-01-02 stsp
15 35dc4510 2019-02-04 stsp status:
16 743f0d3e 2020-10-01 stsp ./status.sh -q -r "$(GOT_TEST_ROOT)"
17 35dc4510 2019-02-04 stsp
18 cbd1af7a 2019-03-18 stsp log:
19 743f0d3e 2020-10-01 stsp ./log.sh -q -r "$(GOT_TEST_ROOT)"
20 cbd1af7a 2019-03-18 stsp
21 d00136be 2019-03-26 stsp add:
22 743f0d3e 2020-10-01 stsp ./add.sh -q -r "$(GOT_TEST_ROOT)"
23 d00136be 2019-03-26 stsp
24 2ec1f75b 2019-03-26 stsp rm:
25 743f0d3e 2020-10-01 stsp ./rm.sh -q -r "$(GOT_TEST_ROOT)"
26 2ec1f75b 2019-03-26 stsp
27 95adcdca 2019-03-27 stsp diff:
28 743f0d3e 2020-10-01 stsp ./diff.sh -q -r "$(GOT_TEST_ROOT)"
29 2ec1f75b 2019-03-26 stsp
30 c970ea82 2019-07-27 stsp blame:
31 743f0d3e 2020-10-01 stsp ./blame.sh -q -r "$(GOT_TEST_ROOT)"
32 c970ea82 2019-07-27 stsp
33 dc5351b4 2019-07-30 stsp branch:
34 743f0d3e 2020-10-01 stsp ./branch.sh -q -r "$(GOT_TEST_ROOT)"
35 dc5351b4 2019-07-30 stsp
36 8e7bd50a 2019-08-22 stsp tag:
37 743f0d3e 2020-10-01 stsp ./tag.sh -q -r "$(GOT_TEST_ROOT)"
38 8e7bd50a 2019-08-22 stsp
39 d1c1ae5f 2019-08-12 stsp ref:
40 743f0d3e 2020-10-01 stsp ./ref.sh -q -r "$(GOT_TEST_ROOT)"
41 d1c1ae5f 2019-08-12 stsp
42 a0275e40 2019-05-09 stsp commit:
43 743f0d3e 2020-10-01 stsp ./commit.sh -q -r "$(GOT_TEST_ROOT)"
44 a0275e40 2019-05-09 stsp
45 2c961eb2 2019-08-03 stsp revert:
46 743f0d3e 2020-10-01 stsp ./revert.sh -q -r "$(GOT_TEST_ROOT)"
47 2c961eb2 2019-08-03 stsp
48 234035bc 2019-06-01 stsp cherrypick:
49 743f0d3e 2020-10-01 stsp ./cherrypick.sh -q -r "$(GOT_TEST_ROOT)"
50 234035bc 2019-06-01 stsp
51 5ef14e63 2019-06-02 stsp backout:
52 743f0d3e 2020-10-01 stsp ./backout.sh -q -r "$(GOT_TEST_ROOT)"
53 5ef14e63 2019-06-02 stsp
54 818c7501 2019-07-11 stsp rebase:
55 743f0d3e 2020-10-01 stsp ./rebase.sh -q -r "$(GOT_TEST_ROOT)"
56 818c7501 2019-07-11 stsp
57 6f04a73d 2022-09-20 mark init:
58 6f04a73d 2022-09-20 mark ./init.sh -q -r "$(GOT_TEST_ROOT)"
59 6f04a73d 2022-09-20 mark
60 3ce1b845 2019-07-15 stsp import:
61 743f0d3e 2020-10-01 stsp ./import.sh -q -r "$(GOT_TEST_ROOT)"
62 3ce1b845 2019-07-15 stsp
63 0ebf8283 2019-07-24 stsp histedit:
64 743f0d3e 2020-10-01 stsp ./histedit.sh -q -r "$(GOT_TEST_ROOT)"
65 0ebf8283 2019-07-24 stsp
66 2822a352 2019-10-15 stsp integrate:
67 743f0d3e 2020-10-01 stsp ./integrate.sh -q -r "$(GOT_TEST_ROOT)"
68 2822a352 2019-10-15 stsp
69 f259c4c1 2021-09-24 stsp merge:
70 f259c4c1 2021-09-24 stsp ./merge.sh -q -r "$(GOT_TEST_ROOT)"
71 f259c4c1 2021-09-24 stsp
72 fccbfb98 2019-08-03 stsp stage:
73 743f0d3e 2020-10-01 stsp ./stage.sh -q -r "$(GOT_TEST_ROOT)"
74 fccbfb98 2019-08-03 stsp
75 ad493afc 2019-08-03 stsp unstage:
76 743f0d3e 2020-10-01 stsp ./unstage.sh -q -r "$(GOT_TEST_ROOT)"
77 ad493afc 2019-08-03 stsp
78 01073a5d 2019-08-22 stsp cat:
79 743f0d3e 2020-10-01 stsp ./cat.sh -q -r "$(GOT_TEST_ROOT)"
80 c8c71e6e 2020-03-21 stsp
81 c8c71e6e 2020-03-21 stsp clone:
82 743f0d3e 2020-10-01 stsp ./clone.sh -q -r "$(GOT_TEST_ROOT)"
83 c8c71e6e 2020-03-21 stsp
84 c8c71e6e 2020-03-21 stsp fetch:
85 743f0d3e 2020-10-01 stsp ./fetch.sh -q -r "$(GOT_TEST_ROOT)"
86 c8c71e6e 2020-03-21 stsp
87 f8a36e22 2021-08-26 stsp send:
88 f8a36e22 2021-08-26 stsp ./send.sh -q -r "$(GOT_TEST_ROOT)"
89 f8a36e22 2021-08-26 stsp
90 4e0a20a4 2020-03-23 tracey tree:
91 743f0d3e 2020-10-01 stsp ./tree.sh -q -r "$(GOT_TEST_ROOT)"
92 4e0a20a4 2020-03-23 tracey
93 e9ce266e 2022-03-07 op patch:
94 e9ce266e 2022-03-07 op ./patch.sh -q -r "$(GOT_TEST_ROOT)"
95 e9ce266e 2022-03-07 op
96 05118f5a 2021-06-22 stsp pack:
97 05118f5a 2021-06-22 stsp ./pack.sh -q -r "$(GOT_TEST_ROOT)"
98 05118f5a 2021-06-22 stsp
99 b3d68e7f 2021-07-03 stsp cleanup:
100 b3d68e7f 2021-07-03 stsp ./cleanup.sh -q -r "$(GOT_TEST_ROOT)"
101 b3d68e7f 2021-07-03 stsp
102 b3d68e7f 2021-07-03 stsp
103 0e673013 2019-01-02 stsp .include <bsd.regress.mk>