commit b65ae19a62d9cce64ca53f9ecb9d219a66ef2f86 from: Stefan Sperling date: Tue Apr 24 08:07:46 2018 UTC cosmetic output tweaks commit - 84d2af0e4cfb1a77325f0abb4f1c51c9fe478c71 commit + b65ae19a62d9cce64ca53f9ecb9d219a66ef2f86 blob - d78f7a6ca58c5b33610b5de87b857d0b2d4e6d94 blob + 16e9b0f24dd3c2f82b3dd2fb15881aa146b5ce27 --- got/got.c +++ 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 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) {