add diff context option to got(1)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
diff --git a/got/got.1 b/got/got.1
index dc720aa..e99745f 100644
--- a/got/got.1
+++ b/got/got.1
@@ -106,6 +106,10 @@ Start traversing history at the specified
.Ar commit .
The expected argument is the name of a branch or a SHA1 hash which corresponds
to a commit object.
+.It Fl C Ar number
+Set the number of context lines shown in diffs with
+.Fl p .
+By default, 3 lines of context are shown.
.It Fl f
Restrict history traversal to the first parent of each commit.
This shows the linear history of the current branch only.
@@ -129,6 +133,15 @@ Both objects must be of the same type (blobs, trees, or commits).
If the
.Ar repository path
is omitted, use the current working directory.
+.Pp
+The options for
+.Cm got diff
+are as follows:
+.Bl -tag -width Ds
+.It Fl C Ar number
+Set the number of context lines shown in the diff.
+By default, 3 lines of context are shown.
+.El
.It Cm blame [ Fl c Ar commit ] [ Fl r Ar repository-path ] Ar path
Display line-by-line history of a file at the specified path.
.Pp
diff --git a/got/got.c b/got/got.c
index 27bc2f2..7da102c 100644
--- a/got/got.c
+++ b/got/got.c
@@ -266,7 +266,7 @@ done:
static const struct got_error *
print_patch(struct got_commit_object *commit, struct got_object_id *id,
- struct got_repository *repo)
+ int diff_context, struct got_repository *repo)
{
const struct got_error *err = NULL;
struct got_tree_object *tree1 = NULL, *tree2;
@@ -290,7 +290,7 @@ print_patch(struct got_commit_object *commit, struct got_object_id *id,
return err;
}
- err = got_diff_tree(tree1, tree2, "", "", 3, repo, stdout);
+ err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
if (tree1)
got_object_tree_close(tree1);
got_object_tree_close(tree2);
@@ -309,7 +309,7 @@ get_datestr(time_t *time, char *datebuf)
static const struct got_error *
print_commit(struct got_commit_object *commit, struct got_object_id *id,
- struct got_repository *repo, int show_patch)
+ struct got_repository *repo, int show_patch, int diff_context)
{
const struct got_error *err = NULL;
char *id_str, *datestr, *logmsg0, *logmsg, *line;
@@ -361,7 +361,7 @@ print_commit(struct got_commit_object *commit, struct got_object_id *id,
free(logmsg0);
if (show_patch) {
- err = print_patch(commit, id, repo);
+ err = print_patch(commit, id, diff_context, repo);
if (err == 0)
printf("\n");
}
@@ -372,8 +372,8 @@ print_commit(struct got_commit_object *commit, struct got_object_id *id,
static const struct got_error *
print_commits(struct got_object *root_obj, struct got_object_id *root_id,
- struct got_repository *repo, char *path, int show_patch, int limit,
- int first_parent_traversal)
+ struct got_repository *repo, char *path, int show_patch, int diff_context,
+ int limit, int first_parent_traversal)
{
const struct got_error *err;
struct got_commit_graph *graph;
@@ -409,7 +409,7 @@ print_commits(struct got_object *root_obj, struct got_object_id *root_id,
err = got_object_open_as_commit(&commit, repo, id);
if (err)
break;
- err = print_commit(commit, id, repo, show_patch);
+ err = print_commit(commit, id, repo, show_patch, diff_context);
got_object_commit_close(commit);
if (err || (limit && --limit == 0))
break;
@@ -422,7 +422,7 @@ done:
__dead static void
usage_log(void)
{
- fprintf(stderr, "usage: %s log [-c commit] [-f] [ -l N ] [-p] "
+ fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
"[-r repository-path] [path]\n", getprogname());
exit(1);
}
@@ -436,7 +436,7 @@ cmd_log(int argc, char *argv[])
struct got_object *obj = NULL;
char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
char *start_commit = NULL;
- int ch;
+ int diff_context = 3, ch;
int show_patch = 0, limit = 0, first_parent_traversal = 0;
const char *errstr;
@@ -446,7 +446,7 @@ cmd_log(int argc, char *argv[])
err(1, "pledge");
#endif
- while ((ch = getopt(argc, argv, "pc:l:fr:")) != -1) {
+ while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
switch (ch) {
case 'p':
show_patch = 1;
@@ -454,6 +454,11 @@ cmd_log(int argc, char *argv[])
case 'c':
start_commit = optarg;
break;
+ case 'C':
+ diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
+ if (errstr != NULL)
+ err(1, "-C option %s", errstr);
+ break;
case 'l':
limit = strtonum(optarg, 1, INT_MAX, &errstr);
if (errstr != NULL)
@@ -550,7 +555,7 @@ cmd_log(int argc, char *argv[])
}
error = print_commits(obj, id, repo, path, show_patch,
- limit, first_parent_traversal);
+ diff_context, limit, first_parent_traversal);
done:
free(path);
free(repo_path);
@@ -570,8 +575,8 @@ done:
__dead static void
usage_diff(void)
{
- fprintf(stderr, "usage: %s diff [repository-path] object1 object2\n",
- getprogname());
+ fprintf(stderr, "usage: %s diff [-C number] [repository-path] "
+ "object1 object2\n", getprogname());
exit(1);
}
@@ -583,7 +588,8 @@ cmd_diff(int argc, char *argv[])
struct got_object *obj1 = NULL, *obj2 = NULL;
char *repo_path = NULL;
char *obj_id_str1 = NULL, *obj_id_str2 = NULL;
- int ch;
+ int diff_context = 3, ch;
+ const char *errstr;
#ifndef PROFILE
if (pledge("stdio rpath wpath cpath flock proc exec sendfd", NULL)
@@ -591,8 +597,13 @@ cmd_diff(int argc, char *argv[])
err(1, "pledge");
#endif
- while ((ch = getopt(argc, argv, "")) != -1) {
+ while ((ch = getopt(argc, argv, "C:")) != -1) {
switch (ch) {
+ case 'C':
+ diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
+ if (errstr != NULL)
+ err(1, "-C option %s", errstr);
+ break;
default:
usage();
/* NOTREACHED */
@@ -639,15 +650,16 @@ cmd_diff(int argc, char *argv[])
switch (got_object_get_type(obj1)) {
case GOT_OBJ_TYPE_BLOB:
- error = got_diff_objects_as_blobs(obj1, obj2, NULL, NULL, 3,
- repo, stdout);
+ error = got_diff_objects_as_blobs(obj1, obj2, NULL, NULL,
+ diff_context, repo, stdout);
break;
case GOT_OBJ_TYPE_TREE:
- error = got_diff_objects_as_trees(obj1, obj2, "", "", 3, repo,
- stdout);
+ error = got_diff_objects_as_trees(obj1, obj2, "", "",
+ diff_context, repo, stdout);
break;
case GOT_OBJ_TYPE_COMMIT:
- error = got_diff_objects_as_commits(obj1, obj2, 3, repo, stdout);
+ error = got_diff_objects_as_commits(obj1, obj2, diff_context,
+ repo, stdout);
break;
default:
error = got_error(GOT_ERR_OBJ_TYPE);