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
6723edc7
Unverified
Commit
6723edc7
authored
Jan 17, 2022
by
Edward Thomson
Committed by
GitHub
Jan 17, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6179 from boretrk/flags
c99: change single bit flags to unsigned
parents
e2e3f3e4
a979cf3d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
24 deletions
+24
-24
src/checkout.c
+5
-5
src/pack-objects.h
+4
-4
src/rebase.c
+4
-4
src/transports/smart.h
+10
-10
src/worktree.h
+1
-1
No files found.
src/checkout.c
View file @
6723edc7
...
...
@@ -81,11 +81,11 @@ typedef struct {
const
git_index_entry
*
ours
;
const
git_index_entry
*
theirs
;
int
name_collision
:
1
,
directoryfile
:
1
,
one_to_two
:
1
,
binary
:
1
,
submodule
:
1
;
unsigned
int
name_collision
:
1
,
directoryfile
:
1
,
one_to_two
:
1
,
binary
:
1
,
submodule
:
1
;
}
checkout_conflictdata
;
static
int
checkout_notify
(
...
...
src/pack-objects.h
View file @
6723edc7
...
...
@@ -46,10 +46,10 @@ typedef struct git_pobject {
size_t
delta_size
;
size_t
z_delta_size
;
int
written
:
1
,
recursing
:
1
,
tagged
:
1
,
filled
:
1
;
unsigned
int
written
:
1
,
recursing
:
1
,
tagged
:
1
,
filled
:
1
;
}
git_pobject
;
struct
git_packbuilder
{
...
...
src/rebase.c
View file @
6723edc7
...
...
@@ -64,10 +64,10 @@ struct git_rebase {
git_rebase_t
type
;
char
*
state_path
;
int
head_detached
:
1
,
inmemory
:
1
,
quiet
:
1
,
started
:
1
;
unsigned
int
head_detached
:
1
,
inmemory
:
1
,
quiet
:
1
,
started
:
1
;
git_array_t
(
git_rebase_operation
)
operations
;
size_t
current
;
...
...
src/transports/smart.h
View file @
6723edc7
...
...
@@ -119,16 +119,16 @@ typedef struct {
}
git_pkt_unpack
;
typedef
struct
transport_smart_caps
{
int
common
:
1
,
ofs_delta
:
1
,
multi_ack
:
1
,
multi_ack_detailed
:
1
,
side_band
:
1
,
side_band_64k
:
1
,
include_tag
:
1
,
delete_refs
:
1
,
report_status
:
1
,
thin_pack
:
1
;
unsigned
int
common
:
1
,
ofs_delta
:
1
,
multi_ack
:
1
,
multi_ack_detailed
:
1
,
side_band
:
1
,
side_band_64k
:
1
,
include_tag
:
1
,
delete_refs
:
1
,
report_status
:
1
,
thin_pack
:
1
;
}
transport_smart_caps
;
typedef
int
(
*
packetsize_cb
)(
size_t
received
,
void
*
payload
);
...
...
src/worktree.h
View file @
6723edc7
...
...
@@ -31,7 +31,7 @@ struct git_worktree {
/* Path to the parent's working directory */
char
*
parent_path
;
int
locked
:
1
;
unsigned
int
locked
:
1
;
};
char
*
git_worktree__read_link
(
const
char
*
base
,
const
char
*
file
);
...
...
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