* about Starter project;implementing log --size in the print_commit function.
@ 2015-03-23 15:15 Shanti Swarup Tunga
2015-03-25 16:13 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Shanti Swarup Tunga @ 2015-03-23 15:15 UTC (permalink / raw)
To: git
I inserted a size variable of int type and calculated size in each
cases of print_commit(). The function is
static void print_commit(git_commit *commit)
{
char buf[GIT_OID_HEXSZ + 1];
int i, count;
const git_signature *sig;
const char *scan, *eol;
int size=0;
git_oid_tostr(buf, sizeof(buf), git_commit_id(commit));
printf("commit %s\n", buf);
if ((count = (int)git_commit_parentcount(commit)) > 1) {
printf("Merge:");
for (i = 0; i < count; ++i) {
git_oid_tostr(buf, 8, git_commit_parent_id(commit, i));
size=size+strlen(buf);
printf(" %s", buf);
}
printf("\n");
}
if ((sig = git_commit_author(commit)) != NULL) {
size=size+strlen(sig->name)+strlen(sig->email);
printf("Author: %s <%s>\n", sig->name, sig->email);
print_time(&sig->when, "Date: ");
}
printf("\n");
for (scan = git_commit_message(commit); scan && *scan; ) {
for (eol = scan; *eol && *eol != '\n'; ++eol) /* find eol */;
size=size+strlen(scan);
printf(" %.*s\n", (int)(eol - scan), scan);
scan = *eol ? eol + 1 : NULL;
}
printf("\n");
printf("%d",size);
}
Will that approach is going to work for the following problem.?
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: about Starter project;implementing log --size in the print_commit function.
2015-03-23 15:15 about Starter project;implementing log --size in the print_commit function Shanti Swarup Tunga
@ 2015-03-25 16:13 ` Junio C Hamano
0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2015-03-25 16:13 UTC (permalink / raw)
To: Shanti Swarup Tunga; +Cc: git
Shanti Swarup Tunga <b112041@iiit-bh.ac.in> writes:
> I inserted a size variable of int type and calculated size in each
> cases of print_commit(). The function is
>
> static void print_commit(git_commit *commit)
> {
> ...
> }
See Documentation/SubmittingPatches and then also CodingGuidelines
Especially, explain:
- what does this change try to help and how?
- why is this patch a good way to achieve that goal?
- how the users are expected to use the new feature?
in the proposed log message, run existing tests to make sure your
change did not break the existing system, add tests to make sure
you would notice if somebody else broke the feature you are adding
in the future, and describe the new feature in the documentation.
> Will that approach is going to work for the following problem.?
Was your message cut short? We cannot read "the following" problem
here...
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-25 16:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-23 15:15 about Starter project;implementing log --size in the print_commit function Shanti Swarup Tunga
2015-03-25 16:13 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).