Commit b65ae19a62d9cce64ca53f9ecb9d219a66ef2f86

Stefan Sperling 2018-04-24T10:07:46

cosmetic output tweaks

diff --git a/got/got.c b/got/got.c
index d78f7a6..16e9b0f 100644
--- a/got/got.c
+++ b/got/got.c
@@ -244,7 +244,8 @@ cmd_checkout(int argc, char *argv[])
 	if (error != NULL)
 		goto done;
 
-	printf("checked out %s\n", worktree_path);
+	printf("Checked out %s\n", worktree_path);
+	printf("Now shut up and hack\n");
 
 done:
 	free(repo_path);
@@ -312,10 +313,10 @@ print_commit(struct got_commit_object *commit, struct got_object_id *id,
 		return err;
 
 	printf("-----------------------------------------------\n");
-	printf("commit: %s\n", buf);
-	printf("Author: %s\n", commit->author);
+	printf("commit %s\n", buf);
+	printf("author: %s\n", commit->author);
 	if (strcmp(commit->author, commit->committer) != 0)
-		printf("Committer: %s\n", commit->committer);
+		printf("committer: %s\n", commit->committer);
 	printf("\n%s\n", commit->logmsg);
 
 	if (show_patch) {