Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
12a888d5
Commit
12a888d5
authored
Oct 13, 2017
by
Carson Howard
Committed by
GitHub
Oct 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples: log: pass options pointer to print_commit
Cleaned up the PR to address styling issues.
parent
27ff888f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
examples/log.c
+7
-7
No files found.
examples/log.c
View file @
12a888d5
...
...
@@ -49,7 +49,8 @@ static int add_revision(struct log_state *s, const char *revstr);
/** log_options holds other command line options that affect log output */
struct
log_options
{
int
show_diff
,
show_log_size
;
int
show_diff
;
int
show_log_size
;
int
skip
,
limit
;
int
min_parents
,
max_parents
;
git_time_t
before
;
...
...
@@ -63,7 +64,7 @@ struct log_options {
static
int
parse_options
(
struct
log_state
*
s
,
struct
log_options
*
opt
,
int
argc
,
char
**
argv
);
static
void
print_time
(
const
git_time
*
intime
,
const
char
*
prefix
);
static
void
print_commit
(
git_commit
*
commit
,
int
show_log_size
);
static
void
print_commit
(
git_commit
*
commit
,
struct
log_options
*
opts
);
static
int
match_with_parent
(
git_commit
*
commit
,
int
i
,
git_diff_options
*
);
/** utility functions for filtering */
...
...
@@ -148,7 +149,7 @@ int main(int argc, char *argv[])
break
;
}
print_commit
(
commit
,
opt
.
show_log_size
);
print_commit
(
commit
,
&
opt
);
if
(
opt
.
show_diff
)
{
git_tree
*
a
=
NULL
,
*
b
=
NULL
;
...
...
@@ -337,7 +338,7 @@ static void print_time(const git_time *intime, const char *prefix)
}
/** Helper to print a commit object. */
static
void
print_commit
(
git_commit
*
commit
,
int
show_log_size
)
static
void
print_commit
(
git_commit
*
commit
,
struct
log_options
*
opts
)
{
char
buf
[
GIT_OID_HEXSZ
+
1
];
int
i
,
count
;
...
...
@@ -347,9 +348,8 @@ static void print_commit(git_commit *commit, int show_log_size)
git_oid_tostr
(
buf
,
sizeof
(
buf
),
git_commit_id
(
commit
));
printf
(
"commit %s
\n
"
,
buf
);
if
(
show_log_size
)
{
printf
(
"log size %d"
,
(
int
)
strlen
(
git_commit_message
(
commit
)));
printf
(
"
\n
"
);
if
(
opts
->
show_log_size
)
{
printf
(
"log size %d
\n
"
,
(
int
)
strlen
(
git_commit_message
(
commit
)));
}
if
((
count
=
(
int
)
git_commit_parentcount
(
commit
))
>
1
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment