Blame


1 5c860e29 2018-03-12 stsp /*
2 f42b1b34 2018-03-12 stsp * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 f42b1b34 2018-03-12 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
4 5c860e29 2018-03-12 stsp *
5 5c860e29 2018-03-12 stsp * Permission to use, copy, modify, and distribute this software for any
6 5c860e29 2018-03-12 stsp * purpose with or without fee is hereby granted, provided that the above
7 5c860e29 2018-03-12 stsp * copyright notice and this permission notice appear in all copies.
8 5c860e29 2018-03-12 stsp *
9 5c860e29 2018-03-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 5c860e29 2018-03-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 5c860e29 2018-03-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 5c860e29 2018-03-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 5c860e29 2018-03-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 5c860e29 2018-03-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 5c860e29 2018-03-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 5c860e29 2018-03-12 stsp */
17 5c860e29 2018-03-12 stsp
18 f42b1b34 2018-03-12 stsp #include <sys/queue.h>
19 64a96a6d 2018-04-01 stsp #include <sys/limits.h>
20 c0768b0f 2018-06-10 stsp #include <sys/types.h>
21 f42b1b34 2018-03-12 stsp
22 5c860e29 2018-03-12 stsp #include <err.h>
23 5c860e29 2018-03-12 stsp #include <errno.h>
24 5c860e29 2018-03-12 stsp #include <locale.h>
25 5c860e29 2018-03-12 stsp #include <stdio.h>
26 5c860e29 2018-03-12 stsp #include <stdlib.h>
27 5c860e29 2018-03-12 stsp #include <string.h>
28 5c860e29 2018-03-12 stsp #include <unistd.h>
29 c09a553d 2018-03-12 stsp #include <libgen.h>
30 c0768b0f 2018-06-10 stsp #include <time.h>
31 5c860e29 2018-03-12 stsp
32 f42b1b34 2018-03-12 stsp #include "got_error.h"
33 f42b1b34 2018-03-12 stsp #include "got_object.h"
34 5261c201 2018-04-01 stsp #include "got_reference.h"
35 f42b1b34 2018-03-12 stsp #include "got_repository.h"
36 c09a553d 2018-03-12 stsp #include "got_worktree.h"
37 79109fed 2018-03-27 stsp #include "got_diff.h"
38 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
39 5c860e29 2018-03-12 stsp
40 5c860e29 2018-03-12 stsp #ifndef nitems
41 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
42 5c860e29 2018-03-12 stsp #endif
43 5c860e29 2018-03-12 stsp
44 5c860e29 2018-03-12 stsp struct cmd {
45 5c860e29 2018-03-12 stsp const char *cmd_name;
46 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
47 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
48 46a0db7d 2018-03-12 stsp const char *cmd_descr;
49 5c860e29 2018-03-12 stsp };
50 5c860e29 2018-03-12 stsp
51 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
52 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
53 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
54 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
55 5c860e29 2018-03-12 stsp
56 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
57 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
58 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
59 4ed7e80c 2018-05-20 stsp #ifdef notyet
60 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
61 4ed7e80c 2018-05-20 stsp #endif
62 5c860e29 2018-03-12 stsp
63 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
64 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
65 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
66 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
67 1b6b95a8 2018-03-12 stsp "show repository history" },
68 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
69 b00d56cd 2018-04-01 stsp "compare files and directories" },
70 f42b1b34 2018-03-12 stsp #ifdef notyet
71 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
72 1b6b95a8 2018-03-12 stsp "show modification status of files" },
73 f42b1b34 2018-03-12 stsp #endif
74 5c860e29 2018-03-12 stsp };
75 5c860e29 2018-03-12 stsp
76 5c860e29 2018-03-12 stsp int
77 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
78 5c860e29 2018-03-12 stsp {
79 5c860e29 2018-03-12 stsp struct cmd *cmd;
80 5c860e29 2018-03-12 stsp unsigned int i;
81 5c860e29 2018-03-12 stsp int ch;
82 1b6b95a8 2018-03-12 stsp int hflag = 0;
83 5c860e29 2018-03-12 stsp
84 5c860e29 2018-03-12 stsp setlocale(LC_ALL, "");
85 5c860e29 2018-03-12 stsp
86 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
87 5c860e29 2018-03-12 stsp switch (ch) {
88 1b6b95a8 2018-03-12 stsp case 'h':
89 1b6b95a8 2018-03-12 stsp hflag = 1;
90 1b6b95a8 2018-03-12 stsp break;
91 5c860e29 2018-03-12 stsp default:
92 5c860e29 2018-03-12 stsp usage();
93 5c860e29 2018-03-12 stsp /* NOTREACHED */
94 5c860e29 2018-03-12 stsp }
95 5c860e29 2018-03-12 stsp }
96 5c860e29 2018-03-12 stsp
97 5c860e29 2018-03-12 stsp argc -= optind;
98 5c860e29 2018-03-12 stsp argv += optind;
99 1e70621d 2018-03-27 stsp optind = 0;
100 5c860e29 2018-03-12 stsp
101 5c860e29 2018-03-12 stsp if (argc <= 0)
102 5c860e29 2018-03-12 stsp usage();
103 5c860e29 2018-03-12 stsp
104 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
105 d7d4f210 2018-03-12 stsp const struct got_error *error;
106 d7d4f210 2018-03-12 stsp
107 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
108 5c860e29 2018-03-12 stsp
109 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
110 5c860e29 2018-03-12 stsp continue;
111 5c860e29 2018-03-12 stsp
112 1b6b95a8 2018-03-12 stsp if (hflag)
113 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
114 1b6b95a8 2018-03-12 stsp
115 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
116 d7d4f210 2018-03-12 stsp if (error) {
117 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
118 d7d4f210 2018-03-12 stsp return 1;
119 d7d4f210 2018-03-12 stsp }
120 d7d4f210 2018-03-12 stsp
121 d7d4f210 2018-03-12 stsp return 0;
122 5c860e29 2018-03-12 stsp }
123 5c860e29 2018-03-12 stsp
124 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
125 5c860e29 2018-03-12 stsp return 1;
126 5c860e29 2018-03-12 stsp }
127 5c860e29 2018-03-12 stsp
128 4ed7e80c 2018-05-20 stsp __dead static void
129 5c860e29 2018-03-12 stsp usage(void)
130 5c860e29 2018-03-12 stsp {
131 46a0db7d 2018-03-12 stsp int i;
132 46a0db7d 2018-03-12 stsp
133 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
134 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
135 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
136 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
137 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
138 46a0db7d 2018-03-12 stsp }
139 5c860e29 2018-03-12 stsp exit(1);
140 5c860e29 2018-03-12 stsp }
141 5c860e29 2018-03-12 stsp
142 4ed7e80c 2018-05-20 stsp __dead static void
143 c09a553d 2018-03-12 stsp usage_checkout(void)
144 c09a553d 2018-03-12 stsp {
145 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
146 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
147 c09a553d 2018-03-12 stsp exit(1);
148 92a684f4 2018-03-12 stsp }
149 92a684f4 2018-03-12 stsp
150 92a684f4 2018-03-12 stsp static void
151 92a684f4 2018-03-12 stsp checkout_progress(void *arg, const char *path)
152 92a684f4 2018-03-12 stsp {
153 92a684f4 2018-03-12 stsp char *worktree_path = arg;
154 92a684f4 2018-03-12 stsp
155 92a684f4 2018-03-12 stsp while (path[0] == '/')
156 92a684f4 2018-03-12 stsp path++;
157 92a684f4 2018-03-12 stsp
158 92a684f4 2018-03-12 stsp printf("A %s/%s\n", worktree_path, path);
159 c09a553d 2018-03-12 stsp }
160 c09a553d 2018-03-12 stsp
161 4ed7e80c 2018-05-20 stsp static const struct got_error *
162 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
163 c09a553d 2018-03-12 stsp {
164 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
165 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
166 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
167 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
168 c09a553d 2018-03-12 stsp char *repo_path = NULL;
169 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
170 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
171 0bb8a95e 2018-03-12 stsp int ch;
172 c09a553d 2018-03-12 stsp
173 0bb8a95e 2018-03-12 stsp while ((ch = getopt(argc, argv, "p:")) != -1) {
174 0bb8a95e 2018-03-12 stsp switch (ch) {
175 0bb8a95e 2018-03-12 stsp case 'p':
176 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
177 0bb8a95e 2018-03-12 stsp break;
178 0bb8a95e 2018-03-12 stsp default:
179 0bb8a95e 2018-03-12 stsp usage();
180 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
181 0bb8a95e 2018-03-12 stsp }
182 0bb8a95e 2018-03-12 stsp }
183 0bb8a95e 2018-03-12 stsp
184 0bb8a95e 2018-03-12 stsp argc -= optind;
185 0bb8a95e 2018-03-12 stsp argv += optind;
186 0bb8a95e 2018-03-12 stsp
187 6715a751 2018-03-16 stsp #ifndef PROFILE
188 2178c42e 2018-04-22 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
189 c09a553d 2018-03-12 stsp err(1, "pledge");
190 6715a751 2018-03-16 stsp #endif
191 0bb8a95e 2018-03-12 stsp if (argc == 1) {
192 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
193 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
194 76089277 2018-04-01 stsp if (repo_path == NULL)
195 76089277 2018-04-01 stsp return got_error_from_errno();
196 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
197 76089277 2018-04-01 stsp if (cwd == NULL) {
198 76089277 2018-04-01 stsp error = got_error_from_errno();
199 76089277 2018-04-01 stsp goto done;
200 76089277 2018-04-01 stsp }
201 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
202 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
203 5d7c1dab 2018-04-01 stsp else
204 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
205 76089277 2018-04-01 stsp if (base == NULL) {
206 76089277 2018-04-01 stsp error = got_error_from_errno();
207 76089277 2018-04-01 stsp goto done;
208 76089277 2018-04-01 stsp }
209 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
210 c09a553d 2018-03-12 stsp if (dotgit)
211 c09a553d 2018-03-12 stsp *dotgit = '\0';
212 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
213 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
214 c09a553d 2018-03-12 stsp free(cwd);
215 76089277 2018-04-01 stsp goto done;
216 c09a553d 2018-03-12 stsp }
217 c09a553d 2018-03-12 stsp free(cwd);
218 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
219 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
220 76089277 2018-04-01 stsp if (repo_path == NULL) {
221 76089277 2018-04-01 stsp error = got_error_from_errno();
222 76089277 2018-04-01 stsp goto done;
223 76089277 2018-04-01 stsp }
224 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
225 76089277 2018-04-01 stsp if (worktree_path == NULL) {
226 76089277 2018-04-01 stsp error = got_error_from_errno();
227 76089277 2018-04-01 stsp goto done;
228 76089277 2018-04-01 stsp }
229 c09a553d 2018-03-12 stsp } else
230 c09a553d 2018-03-12 stsp usage_checkout();
231 c09a553d 2018-03-12 stsp
232 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
233 c09a553d 2018-03-12 stsp if (error != NULL)
234 c09a553d 2018-03-12 stsp goto done;
235 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
236 c09a553d 2018-03-12 stsp if (error != NULL)
237 c09a553d 2018-03-12 stsp goto done;
238 c09a553d 2018-03-12 stsp
239 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
240 c09a553d 2018-03-12 stsp if (error != NULL)
241 c09a553d 2018-03-12 stsp goto done;
242 c09a553d 2018-03-12 stsp
243 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
244 c09a553d 2018-03-12 stsp if (error != NULL)
245 c09a553d 2018-03-12 stsp goto done;
246 c09a553d 2018-03-12 stsp
247 92a684f4 2018-03-12 stsp error = got_worktree_checkout_files(worktree, head_ref, repo,
248 92a684f4 2018-03-12 stsp checkout_progress, worktree_path);
249 c09a553d 2018-03-12 stsp if (error != NULL)
250 c09a553d 2018-03-12 stsp goto done;
251 c09a553d 2018-03-12 stsp
252 b65ae19a 2018-04-24 stsp printf("Checked out %s\n", worktree_path);
253 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
254 c09a553d 2018-03-12 stsp
255 c09a553d 2018-03-12 stsp done:
256 76089277 2018-04-01 stsp free(repo_path);
257 c09a553d 2018-03-12 stsp free(worktree_path);
258 c09a553d 2018-03-12 stsp return error;
259 c09a553d 2018-03-12 stsp }
260 c09a553d 2018-03-12 stsp
261 f42b1b34 2018-03-12 stsp static const struct got_error *
262 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
263 f42b1b34 2018-03-12 stsp struct got_repository *repo)
264 5c860e29 2018-03-12 stsp {
265 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
266 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
267 79109fed 2018-03-27 stsp struct got_object *obj;
268 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
269 79109fed 2018-03-27 stsp
270 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, commit->tree_id);
271 79109fed 2018-03-27 stsp if (err)
272 79109fed 2018-03-27 stsp return err;
273 79109fed 2018-03-27 stsp
274 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree2, repo, obj);
275 79109fed 2018-03-27 stsp got_object_close(obj);
276 79109fed 2018-03-27 stsp if (err)
277 79109fed 2018-03-27 stsp return err;
278 79109fed 2018-03-27 stsp
279 79f35eb3 2018-06-11 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
280 79f35eb3 2018-06-11 stsp if (qid != NULL) {
281 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
282 79109fed 2018-03-27 stsp
283 79f35eb3 2018-06-11 stsp err = got_object_open(&obj, repo, qid->id);
284 79109fed 2018-03-27 stsp if (err)
285 79109fed 2018-03-27 stsp return err;
286 79109fed 2018-03-27 stsp
287 79109fed 2018-03-27 stsp err = got_object_commit_open(&pcommit, repo, obj);
288 79109fed 2018-03-27 stsp got_object_close(obj);
289 79109fed 2018-03-27 stsp if (err)
290 79109fed 2018-03-27 stsp return err;
291 79109fed 2018-03-27 stsp
292 79109fed 2018-03-27 stsp err = got_object_open(&obj, repo, pcommit->tree_id);
293 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
294 79109fed 2018-03-27 stsp if (err)
295 79109fed 2018-03-27 stsp return err;
296 79109fed 2018-03-27 stsp err = got_object_tree_open(&tree1, repo, obj);
297 79109fed 2018-03-27 stsp got_object_close(obj);
298 79109fed 2018-03-27 stsp if (err)
299 79109fed 2018-03-27 stsp return err;
300 79109fed 2018-03-27 stsp }
301 79109fed 2018-03-27 stsp
302 79109fed 2018-03-27 stsp err = got_diff_tree(tree1, tree2, repo, stdout);
303 79109fed 2018-03-27 stsp if (tree1)
304 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
305 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
306 79109fed 2018-03-27 stsp return err;
307 79109fed 2018-03-27 stsp }
308 79109fed 2018-03-27 stsp
309 6c281f94 2018-06-11 stsp char *
310 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
311 6c281f94 2018-06-11 stsp {
312 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
313 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
314 6c281f94 2018-06-11 stsp if (p)
315 6c281f94 2018-06-11 stsp *p = '\0';
316 6c281f94 2018-06-11 stsp return s;
317 6c281f94 2018-06-11 stsp }
318 6c281f94 2018-06-11 stsp
319 79109fed 2018-03-27 stsp static const struct got_error *
320 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
321 a0603db2 2018-06-10 stsp struct got_repository *repo, int show_patch, int verbose)
322 79109fed 2018-03-27 stsp {
323 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
324 6c281f94 2018-06-11 stsp char *id_str, *datestr, *logmsg, *line;
325 6c281f94 2018-06-11 stsp char datebuf[26];
326 5c860e29 2018-03-12 stsp
327 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
328 8bf5b3c9 2018-03-17 stsp if (err)
329 8bf5b3c9 2018-03-17 stsp return err;
330 5c860e29 2018-03-12 stsp
331 8bf5b3c9 2018-03-17 stsp printf("-----------------------------------------------\n");
332 832c249c 2018-06-10 stsp printf("commit %s\n", id_str);
333 832c249c 2018-06-10 stsp free(id_str);
334 6c281f94 2018-06-11 stsp datestr = get_datestr(&commit->author_time, datebuf);
335 6c281f94 2018-06-11 stsp printf("author: %s %s %s\n", commit->author, datestr,
336 6c281f94 2018-06-11 stsp commit->author_tzoff);
337 6ede4e7a 2018-06-11 stsp if (strcmp(commit->author, commit->committer) != 0 ||
338 6ede4e7a 2018-06-11 stsp commit->author_time != commit->committer_time ||
339 6ede4e7a 2018-06-11 stsp strcmp(commit->author_tzoff, commit->committer_tzoff) != 0) {
340 6c281f94 2018-06-11 stsp datestr = get_datestr(&commit->committer_time, datebuf);
341 6c281f94 2018-06-11 stsp printf("committer: %s %s %s\n", commit->committer,
342 6c281f94 2018-06-11 stsp datestr, commit->committer_tzoff);
343 6c281f94 2018-06-11 stsp }
344 3fe1abad 2018-06-10 stsp if (commit->nparents > 1) {
345 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
346 3fe1abad 2018-06-10 stsp int n = 1;
347 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
348 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
349 a0603db2 2018-06-10 stsp if (err)
350 a0603db2 2018-06-10 stsp return err;
351 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
352 a0603db2 2018-06-10 stsp free(id_str);
353 a0603db2 2018-06-10 stsp }
354 a0603db2 2018-06-10 stsp }
355 832c249c 2018-06-10 stsp
356 832c249c 2018-06-10 stsp logmsg = strdup(commit->logmsg);
357 832c249c 2018-06-10 stsp if (logmsg == NULL)
358 832c249c 2018-06-10 stsp return got_error_from_errno();
359 8bf5b3c9 2018-03-17 stsp
360 832c249c 2018-06-10 stsp do {
361 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
362 832c249c 2018-06-10 stsp if (line)
363 832c249c 2018-06-10 stsp printf(" %s\n", line);
364 832c249c 2018-06-10 stsp } while (line);
365 832c249c 2018-06-10 stsp free(logmsg);
366 832c249c 2018-06-10 stsp
367 971751ac 2018-03-27 stsp if (show_patch) {
368 79109fed 2018-03-27 stsp err = print_patch(commit, id, repo);
369 971751ac 2018-03-27 stsp if (err == 0)
370 971751ac 2018-03-27 stsp printf("\n");
371 971751ac 2018-03-27 stsp }
372 79109fed 2018-03-27 stsp
373 79109fed 2018-03-27 stsp return err;
374 f42b1b34 2018-03-12 stsp }
375 5c860e29 2018-03-12 stsp
376 f42b1b34 2018-03-12 stsp static const struct got_error *
377 8bf5b3c9 2018-03-17 stsp print_commits(struct got_object *root_obj, struct got_object_id *root_id,
378 a0603db2 2018-06-10 stsp struct got_repository *repo, int show_patch, int limit, int verbose)
379 f42b1b34 2018-03-12 stsp {
380 f42b1b34 2018-03-12 stsp const struct got_error *err;
381 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
382 372ccdbb 2018-06-10 stsp int ncommits;
383 372ccdbb 2018-06-10 stsp
384 372ccdbb 2018-06-10 stsp err = got_commit_graph_open(&graph, root_id, repo);
385 f42b1b34 2018-03-12 stsp if (err)
386 f42b1b34 2018-03-12 stsp return err;
387 372ccdbb 2018-06-10 stsp err = got_commit_graph_iter_start(graph, root_id);
388 372ccdbb 2018-06-10 stsp if (err)
389 0a585a0d 2018-03-17 stsp return err;
390 372ccdbb 2018-06-10 stsp do {
391 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
392 372ccdbb 2018-06-10 stsp struct got_object_id *id;
393 8bf5b3c9 2018-03-17 stsp
394 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
395 372ccdbb 2018-06-10 stsp if (err) {
396 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
397 372ccdbb 2018-06-10 stsp break;
398 372ccdbb 2018-06-10 stsp err = got_commit_graph_fetch_commits(&ncommits,
399 372ccdbb 2018-06-10 stsp graph, 1, repo);
400 372ccdbb 2018-06-10 stsp if (err)
401 372ccdbb 2018-06-10 stsp break;
402 372ccdbb 2018-06-10 stsp else
403 372ccdbb 2018-06-10 stsp continue;
404 7e665116 2018-04-02 stsp }
405 b43fbaa0 2018-06-11 stsp if (id == NULL)
406 7e665116 2018-04-02 stsp break;
407 b43fbaa0 2018-06-11 stsp
408 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
409 b43fbaa0 2018-06-11 stsp if (err)
410 b43fbaa0 2018-06-11 stsp return err;
411 a0603db2 2018-06-10 stsp err = print_commit(commit, id, repo, show_patch, verbose);
412 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
413 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
414 7e665116 2018-04-02 stsp break;
415 372ccdbb 2018-06-10 stsp } while (ncommits > 0);
416 8bf5b3c9 2018-03-17 stsp
417 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
418 f42b1b34 2018-03-12 stsp return err;
419 f42b1b34 2018-03-12 stsp }
420 5c860e29 2018-03-12 stsp
421 4ed7e80c 2018-05-20 stsp __dead static void
422 6f3d1eb0 2018-03-12 stsp usage_log(void)
423 6f3d1eb0 2018-03-12 stsp {
424 64a96a6d 2018-04-01 stsp fprintf(stderr, "usage: %s log [-p] [-c commit] [ -l N ] "
425 64a96a6d 2018-04-01 stsp "[repository-path]\n", getprogname());
426 6f3d1eb0 2018-03-12 stsp exit(1);
427 6f3d1eb0 2018-03-12 stsp }
428 6f3d1eb0 2018-03-12 stsp
429 4ed7e80c 2018-05-20 stsp static const struct got_error *
430 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
431 f42b1b34 2018-03-12 stsp {
432 f42b1b34 2018-03-12 stsp const struct got_error *error;
433 f42b1b34 2018-03-12 stsp struct got_repository *repo;
434 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
435 f42b1b34 2018-03-12 stsp struct got_object *obj;
436 6f3d1eb0 2018-03-12 stsp char *repo_path = NULL;
437 d142fc45 2018-04-01 stsp char *start_commit = NULL;
438 79109fed 2018-03-27 stsp int ch;
439 a0603db2 2018-06-10 stsp int show_patch = 0, limit = 0, verbose = 0;
440 64a96a6d 2018-04-01 stsp const char *errstr;
441 5c860e29 2018-03-12 stsp
442 6715a751 2018-03-16 stsp #ifndef PROFILE
443 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
444 f42b1b34 2018-03-12 stsp err(1, "pledge");
445 6715a751 2018-03-16 stsp #endif
446 79109fed 2018-03-27 stsp
447 a0603db2 2018-06-10 stsp while ((ch = getopt(argc, argv, "pc:l:v")) != -1) {
448 79109fed 2018-03-27 stsp switch (ch) {
449 79109fed 2018-03-27 stsp case 'p':
450 79109fed 2018-03-27 stsp show_patch = 1;
451 d142fc45 2018-04-01 stsp break;
452 d142fc45 2018-04-01 stsp case 'c':
453 d142fc45 2018-04-01 stsp start_commit = optarg;
454 64a96a6d 2018-04-01 stsp break;
455 64a96a6d 2018-04-01 stsp case 'l':
456 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
457 64a96a6d 2018-04-01 stsp if (errstr != NULL)
458 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
459 79109fed 2018-03-27 stsp break;
460 a0603db2 2018-06-10 stsp case 'v':
461 a0603db2 2018-06-10 stsp verbose = 1;
462 a0603db2 2018-06-10 stsp break;
463 79109fed 2018-03-27 stsp default:
464 79109fed 2018-03-27 stsp usage();
465 79109fed 2018-03-27 stsp /* NOTREACHED */
466 79109fed 2018-03-27 stsp }
467 79109fed 2018-03-27 stsp }
468 79109fed 2018-03-27 stsp
469 79109fed 2018-03-27 stsp argc -= optind;
470 79109fed 2018-03-27 stsp argv += optind;
471 79109fed 2018-03-27 stsp
472 79109fed 2018-03-27 stsp if (argc == 0) {
473 6f3d1eb0 2018-03-12 stsp repo_path = getcwd(NULL, 0);
474 6f3d1eb0 2018-03-12 stsp if (repo_path == NULL)
475 e1e3f570 2018-04-01 stsp return got_error_from_errno();
476 3235492e 2018-04-01 stsp } else if (argc == 1) {
477 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
478 76089277 2018-04-01 stsp if (repo_path == NULL)
479 76089277 2018-04-01 stsp return got_error_from_errno();
480 3235492e 2018-04-01 stsp } else
481 6f3d1eb0 2018-03-12 stsp usage_log();
482 f42b1b34 2018-03-12 stsp
483 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
484 76089277 2018-04-01 stsp free(repo_path);
485 d7d4f210 2018-03-12 stsp if (error != NULL)
486 d7d4f210 2018-03-12 stsp return error;
487 f42b1b34 2018-03-12 stsp
488 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
489 3235492e 2018-04-01 stsp struct got_reference *head_ref;
490 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
491 3235492e 2018-04-01 stsp if (error != NULL)
492 3235492e 2018-04-01 stsp return error;
493 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
494 3235492e 2018-04-01 stsp got_ref_close(head_ref);
495 3235492e 2018-04-01 stsp if (error != NULL)
496 3235492e 2018-04-01 stsp return error;
497 3235492e 2018-04-01 stsp error = got_object_open(&obj, repo, id);
498 3235492e 2018-04-01 stsp } else {
499 d142fc45 2018-04-01 stsp error = got_object_open_by_id_str(&obj, repo, start_commit);
500 3235492e 2018-04-01 stsp if (error == NULL) {
501 3235492e 2018-04-01 stsp id = got_object_get_id(obj);
502 3235492e 2018-04-01 stsp if (id == NULL)
503 3235492e 2018-04-01 stsp error = got_error_from_errno();
504 3235492e 2018-04-01 stsp }
505 3235492e 2018-04-01 stsp }
506 d7d4f210 2018-03-12 stsp if (error != NULL)
507 d7d4f210 2018-03-12 stsp return error;
508 8bf5b3c9 2018-03-17 stsp if (got_object_get_type(obj) == GOT_OBJ_TYPE_COMMIT)
509 a0603db2 2018-06-10 stsp error = print_commits(obj, id, repo, show_patch, limit,
510 a0603db2 2018-06-10 stsp verbose);
511 8bf5b3c9 2018-03-17 stsp else
512 8bf5b3c9 2018-03-17 stsp error = got_error(GOT_ERR_OBJ_TYPE);
513 f42b1b34 2018-03-12 stsp got_object_close(obj);
514 f42b1b34 2018-03-12 stsp free(id);
515 f42b1b34 2018-03-12 stsp got_repo_close(repo);
516 8bf5b3c9 2018-03-17 stsp return error;
517 5c860e29 2018-03-12 stsp }
518 5c860e29 2018-03-12 stsp
519 4ed7e80c 2018-05-20 stsp __dead static void
520 3f8b7d6a 2018-04-01 stsp usage_diff(void)
521 3f8b7d6a 2018-04-01 stsp {
522 3f8b7d6a 2018-04-01 stsp fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
523 3f8b7d6a 2018-04-01 stsp getprogname());
524 3f8b7d6a 2018-04-01 stsp exit(1);
525 b00d56cd 2018-04-01 stsp }
526 b00d56cd 2018-04-01 stsp
527 4ed7e80c 2018-05-20 stsp static const struct got_error *
528 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
529 b00d56cd 2018-04-01 stsp {
530 b00d56cd 2018-04-01 stsp const struct got_error *error;
531 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
532 b00d56cd 2018-04-01 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
533 b00d56cd 2018-04-01 stsp struct got_object *obj1 = NULL, *obj2 = NULL;
534 b00d56cd 2018-04-01 stsp char *repo_path = NULL;
535 b00d56cd 2018-04-01 stsp char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
536 b00d56cd 2018-04-01 stsp int ch;
537 b00d56cd 2018-04-01 stsp
538 b00d56cd 2018-04-01 stsp #ifndef PROFILE
539 442a3ddc 2018-04-23 stsp if (pledge("stdio rpath wpath cpath flock proc", NULL) == -1)
540 b00d56cd 2018-04-01 stsp err(1, "pledge");
541 b00d56cd 2018-04-01 stsp #endif
542 b00d56cd 2018-04-01 stsp
543 b00d56cd 2018-04-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
544 b00d56cd 2018-04-01 stsp switch (ch) {
545 b00d56cd 2018-04-01 stsp default:
546 b00d56cd 2018-04-01 stsp usage();
547 b00d56cd 2018-04-01 stsp /* NOTREACHED */
548 b00d56cd 2018-04-01 stsp }
549 b00d56cd 2018-04-01 stsp }
550 b00d56cd 2018-04-01 stsp
551 b00d56cd 2018-04-01 stsp argc -= optind;
552 b00d56cd 2018-04-01 stsp argv += optind;
553 b00d56cd 2018-04-01 stsp
554 b00d56cd 2018-04-01 stsp if (argc == 0) {
555 b00d56cd 2018-04-01 stsp usage_diff(); /* TODO show local worktree changes */
556 3f8b7d6a 2018-04-01 stsp } else if (argc == 2) {
557 3f8b7d6a 2018-04-01 stsp repo_path = getcwd(NULL, 0);
558 3f8b7d6a 2018-04-01 stsp if (repo_path == NULL)
559 e1e3f570 2018-04-01 stsp return got_error_from_errno();
560 3f8b7d6a 2018-04-01 stsp obj_id_str1 = argv[0];
561 3f8b7d6a 2018-04-01 stsp obj_id_str2 = argv[1];
562 b00d56cd 2018-04-01 stsp } else if (argc == 3) {
563 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
564 76089277 2018-04-01 stsp if (repo_path == NULL)
565 76089277 2018-04-01 stsp return got_error_from_errno();
566 b00d56cd 2018-04-01 stsp obj_id_str1 = argv[1];
567 b00d56cd 2018-04-01 stsp obj_id_str2 = argv[2];
568 b00d56cd 2018-04-01 stsp } else
569 b00d56cd 2018-04-01 stsp usage_diff();
570 b00d56cd 2018-04-01 stsp
571 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
572 76089277 2018-04-01 stsp free(repo_path);
573 b00d56cd 2018-04-01 stsp if (error != NULL)
574 b00d56cd 2018-04-01 stsp goto done;
575 b00d56cd 2018-04-01 stsp
576 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj1, repo, obj_id_str1);
577 b00d56cd 2018-04-01 stsp if (error == NULL) {
578 b00d56cd 2018-04-01 stsp id1 = got_object_get_id(obj1);
579 b00d56cd 2018-04-01 stsp if (id1 == NULL)
580 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
581 b00d56cd 2018-04-01 stsp }
582 b00d56cd 2018-04-01 stsp if (error != NULL)
583 b00d56cd 2018-04-01 stsp goto done;
584 b00d56cd 2018-04-01 stsp
585 b00d56cd 2018-04-01 stsp error = got_object_open_by_id_str(&obj2, repo, obj_id_str2);
586 b00d56cd 2018-04-01 stsp if (error == NULL) {
587 b00d56cd 2018-04-01 stsp id2 = got_object_get_id(obj2);
588 b00d56cd 2018-04-01 stsp if (id2 == NULL)
589 b00d56cd 2018-04-01 stsp error = got_error_from_errno();
590 b00d56cd 2018-04-01 stsp }
591 b00d56cd 2018-04-01 stsp if (error != NULL)
592 b00d56cd 2018-04-01 stsp goto done;
593 b00d56cd 2018-04-01 stsp
594 b00d56cd 2018-04-01 stsp if (got_object_get_type(obj1) != got_object_get_type(obj2)) {
595 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
596 b00d56cd 2018-04-01 stsp goto done;
597 b00d56cd 2018-04-01 stsp }
598 b00d56cd 2018-04-01 stsp
599 b00d56cd 2018-04-01 stsp switch (got_object_get_type(obj1)) {
600 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
601 11528a82 2018-05-19 stsp error = got_diff_objects_as_blobs(obj1, obj2, repo, stdout);
602 b00d56cd 2018-04-01 stsp break;
603 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
604 11528a82 2018-05-19 stsp error = got_diff_objects_as_trees(obj1, obj2, repo, stdout);
605 b00d56cd 2018-04-01 stsp break;
606 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
607 11528a82 2018-05-19 stsp error = got_diff_objects_as_commits(obj1, obj2, repo, stdout);
608 b00d56cd 2018-04-01 stsp break;
609 b00d56cd 2018-04-01 stsp default:
610 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
611 b00d56cd 2018-04-01 stsp }
612 b00d56cd 2018-04-01 stsp
613 b00d56cd 2018-04-01 stsp done:
614 b00d56cd 2018-04-01 stsp if (obj1)
615 b00d56cd 2018-04-01 stsp got_object_close(obj1);
616 b00d56cd 2018-04-01 stsp if (obj2)
617 b00d56cd 2018-04-01 stsp got_object_close(obj2);
618 b00d56cd 2018-04-01 stsp if (id1)
619 b00d56cd 2018-04-01 stsp free(id1);
620 b00d56cd 2018-04-01 stsp if (id2)
621 b00d56cd 2018-04-01 stsp free(id2);
622 b00d56cd 2018-04-01 stsp if (repo)
623 b00d56cd 2018-04-01 stsp got_repo_close(repo);
624 b00d56cd 2018-04-01 stsp return error;
625 b00d56cd 2018-04-01 stsp }
626 b00d56cd 2018-04-01 stsp
627 f42b1b34 2018-03-12 stsp #ifdef notyet
628 4ed7e80c 2018-05-20 stsp static const struct got_error *
629 5c860e29 2018-03-12 stsp cmd_status(int argc __unused, char *argv[] __unused)
630 5c860e29 2018-03-12 stsp {
631 5c860e29 2018-03-12 stsp git_repository *repo = NULL;
632 5c860e29 2018-03-12 stsp git_status_list *status;
633 5c860e29 2018-03-12 stsp git_status_options statusopts;
634 5c860e29 2018-03-12 stsp size_t i;
635 5c860e29 2018-03-12 stsp
636 5c860e29 2018-03-12 stsp git_libgit2_init();
637 5c860e29 2018-03-12 stsp
638 5c860e29 2018-03-12 stsp if (git_repository_open_ext(&repo, ".", 0, NULL))
639 5c860e29 2018-03-12 stsp errx(1, "git_repository_open: %s", giterr_last()->message);
640 5c860e29 2018-03-12 stsp
641 5c860e29 2018-03-12 stsp if (git_repository_is_bare(repo))
642 5c860e29 2018-03-12 stsp errx(1, "bar repository");
643 5c860e29 2018-03-12 stsp
644 5c860e29 2018-03-12 stsp if (git_status_init_options(&statusopts, GIT_STATUS_OPTIONS_VERSION))
645 5c860e29 2018-03-12 stsp errx(1, "git_status_init_options: %s", giterr_last()->message);
646 5c860e29 2018-03-12 stsp
647 5c860e29 2018-03-12 stsp statusopts.show = GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
648 5c860e29 2018-03-12 stsp statusopts.flags = GIT_STATUS_OPT_INCLUDE_UNTRACKED |
649 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX |
650 5c860e29 2018-03-12 stsp GIT_STATUS_OPT_SORT_CASE_SENSITIVELY;
651 5c860e29 2018-03-12 stsp
652 5c860e29 2018-03-12 stsp if (git_status_list_new(&status, repo, &statusopts))
653 5c860e29 2018-03-12 stsp errx(1, "git_status_list_new: %s", giterr_last()->message);
654 5c860e29 2018-03-12 stsp
655 5c860e29 2018-03-12 stsp for (i = 0; i < git_status_list_entrycount(status); i++) {
656 5c860e29 2018-03-12 stsp const git_status_entry *se;
657 5c860e29 2018-03-12 stsp
658 5c860e29 2018-03-12 stsp se = git_status_byindex(status, i);
659 5c860e29 2018-03-12 stsp switch (se->status) {
660 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_NEW:
661 5c860e29 2018-03-12 stsp printf("? %s\n", se->index_to_workdir->new_file.path);
662 5c860e29 2018-03-12 stsp break;
663 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_MODIFIED:
664 5c860e29 2018-03-12 stsp printf("M %s\n", se->index_to_workdir->new_file.path);
665 5c860e29 2018-03-12 stsp break;
666 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_DELETED:
667 5c860e29 2018-03-12 stsp printf("R %s\n", se->index_to_workdir->new_file.path);
668 5c860e29 2018-03-12 stsp break;
669 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_RENAMED:
670 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
671 5c860e29 2018-03-12 stsp se->index_to_workdir->old_file.path,
672 5c860e29 2018-03-12 stsp se->index_to_workdir->new_file.path);
673 5c860e29 2018-03-12 stsp break;
674 5c860e29 2018-03-12 stsp case GIT_STATUS_WT_TYPECHANGE:
675 5c860e29 2018-03-12 stsp printf("t %s\n", se->index_to_workdir->new_file.path);
676 5c860e29 2018-03-12 stsp break;
677 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_NEW:
678 5c860e29 2018-03-12 stsp printf("A %s\n", se->head_to_index->new_file.path);
679 5c860e29 2018-03-12 stsp break;
680 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_MODIFIED:
681 5c860e29 2018-03-12 stsp printf("M %s\n", se->head_to_index->old_file.path);
682 5c860e29 2018-03-12 stsp break;
683 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_DELETED:
684 5c860e29 2018-03-12 stsp printf("R %s\n", se->head_to_index->old_file.path);
685 5c860e29 2018-03-12 stsp break;
686 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_RENAMED:
687 5c860e29 2018-03-12 stsp printf("m %s -> %s\n",
688 5c860e29 2018-03-12 stsp se->head_to_index->old_file.path,
689 5c860e29 2018-03-12 stsp se->head_to_index->new_file.path);
690 5c860e29 2018-03-12 stsp break;
691 5c860e29 2018-03-12 stsp case GIT_STATUS_INDEX_TYPECHANGE:
692 5c860e29 2018-03-12 stsp printf("t %s\n", se->head_to_index->old_file.path);
693 5c860e29 2018-03-12 stsp break;
694 5c860e29 2018-03-12 stsp case GIT_STATUS_CURRENT:
695 5c860e29 2018-03-12 stsp default:
696 5c860e29 2018-03-12 stsp break;
697 5c860e29 2018-03-12 stsp }
698 5c860e29 2018-03-12 stsp }
699 5c860e29 2018-03-12 stsp
700 5c860e29 2018-03-12 stsp git_status_list_free(status);
701 5c860e29 2018-03-12 stsp git_repository_free(repo);
702 5c860e29 2018-03-12 stsp git_libgit2_shutdown();
703 5c860e29 2018-03-12 stsp
704 5c860e29 2018-03-12 stsp return 0;
705 5c860e29 2018-03-12 stsp }
706 f42b1b34 2018-03-12 stsp #endif