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
a979cf3d
Commit
a979cf3d
authored
Nov 17, 2021
by
Peter Pettersson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
c99: change single bit flags to unsigned
parent
e2e3f3e4
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 @
a979cf3d
...
@@ -81,11 +81,11 @@ typedef struct {
...
@@ -81,11 +81,11 @@ typedef struct {
const
git_index_entry
*
ours
;
const
git_index_entry
*
ours
;
const
git_index_entry
*
theirs
;
const
git_index_entry
*
theirs
;
int
name_collision
:
1
,
unsigned
int
name_collision
:
1
,
directoryfile
:
1
,
directoryfile
:
1
,
one_to_two
:
1
,
one_to_two
:
1
,
binary
:
1
,
binary
:
1
,
submodule
:
1
;
submodule
:
1
;
}
checkout_conflictdata
;
}
checkout_conflictdata
;
static
int
checkout_notify
(
static
int
checkout_notify
(
...
...
src/pack-objects.h
View file @
a979cf3d
...
@@ -46,10 +46,10 @@ typedef struct git_pobject {
...
@@ -46,10 +46,10 @@ typedef struct git_pobject {
size_t
delta_size
;
size_t
delta_size
;
size_t
z_delta_size
;
size_t
z_delta_size
;
int
written
:
1
,
unsigned
int
written
:
1
,
recursing
:
1
,
recursing
:
1
,
tagged
:
1
,
tagged
:
1
,
filled
:
1
;
filled
:
1
;
}
git_pobject
;
}
git_pobject
;
struct
git_packbuilder
{
struct
git_packbuilder
{
...
...
src/rebase.c
View file @
a979cf3d
...
@@ -64,10 +64,10 @@ struct git_rebase {
...
@@ -64,10 +64,10 @@ struct git_rebase {
git_rebase_t
type
;
git_rebase_t
type
;
char
*
state_path
;
char
*
state_path
;
int
head_detached
:
1
,
unsigned
int
head_detached
:
1
,
inmemory
:
1
,
inmemory
:
1
,
quiet
:
1
,
quiet
:
1
,
started
:
1
;
started
:
1
;
git_array_t
(
git_rebase_operation
)
operations
;
git_array_t
(
git_rebase_operation
)
operations
;
size_t
current
;
size_t
current
;
...
...
src/transports/smart.h
View file @
a979cf3d
...
@@ -119,16 +119,16 @@ typedef struct {
...
@@ -119,16 +119,16 @@ typedef struct {
}
git_pkt_unpack
;
}
git_pkt_unpack
;
typedef
struct
transport_smart_caps
{
typedef
struct
transport_smart_caps
{
int
common
:
1
,
unsigned
int
common
:
1
,
ofs_delta
:
1
,
ofs_delta
:
1
,
multi_ack
:
1
,
multi_ack
:
1
,
multi_ack_detailed
:
1
,
multi_ack_detailed
:
1
,
side_band
:
1
,
side_band
:
1
,
side_band_64k
:
1
,
side_band_64k
:
1
,
include_tag
:
1
,
include_tag
:
1
,
delete_refs
:
1
,
delete_refs
:
1
,
report_status
:
1
,
report_status
:
1
,
thin_pack
:
1
;
thin_pack
:
1
;
}
transport_smart_caps
;
}
transport_smart_caps
;
typedef
int
(
*
packetsize_cb
)(
size_t
received
,
void
*
payload
);
typedef
int
(
*
packetsize_cb
)(
size_t
received
,
void
*
payload
);
...
...
src/worktree.h
View file @
a979cf3d
...
@@ -31,7 +31,7 @@ struct git_worktree {
...
@@ -31,7 +31,7 @@ struct git_worktree {
/* Path to the parent's working directory */
/* Path to the parent's working directory */
char
*
parent_path
;
char
*
parent_path
;
int
locked
:
1
;
unsigned
int
locked
:
1
;
};
};
char
*
git_worktree__read_link
(
const
char
*
base
,
const
char
*
file
);
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