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
c214ba19
Commit
c214ba19
authored
Feb 20, 2018
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkout: respect core.filemode when comparing filemodes
Fixes #4504
parent
275693e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
13 deletions
+21
-13
src/checkout.c
+21
-13
No files found.
src/checkout.c
View file @
c214ba19
...
...
@@ -70,6 +70,7 @@ typedef struct {
git_buf
tmp
;
unsigned
int
strategy
;
int
can_symlink
;
int
respect_filemode
;
bool
reload_submodules
;
size_t
total_steps
;
size_t
completed_steps
;
...
...
@@ -159,17 +160,20 @@ GIT_INLINE(bool) is_workdir_base_or_new(
git_oid__cmp
(
&
newitem
->
id
,
workdir_id
)
==
0
);
}
GIT_INLINE
(
bool
)
is_file
_mode_changed
(
git_filemode_t
a
,
git_filemode_t
b
)
GIT_INLINE
(
bool
)
is_file
mode_changed
(
git_filemode_t
a
,
git_filemode_t
b
,
int
respect_filemode
)
{
#ifdef GIT_WIN32
/*
* On Win32 we do not support the executable bit; the file will
* always be 0100644 on disk, don't bother doing a test.
*/
return
false
;
#else
return
(
S_ISREG
(
a
)
&&
S_ISREG
(
b
)
&&
a
!=
b
);
#endif
/* If core.filemode = false, ignore links in the repository and executable bit changes */
if
(
!
respect_filemode
)
{
if
(
a
==
S_IFLNK
)
a
=
GIT_FILEMODE_BLOB
;
if
(
b
==
S_IFLNK
)
b
=
GIT_FILEMODE_BLOB
;
a
&=
~
0111
;
b
&=
~
0111
;
}
return
(
a
!=
b
);
}
static
bool
checkout_is_workdir_modified
(
...
...
@@ -217,11 +221,11 @@ static bool checkout_is_workdir_modified(
if
(
ie
!=
NULL
&&
git_index_time_eq
(
&
wditem
->
mtime
,
&
ie
->
mtime
)
&&
wditem
->
file_size
==
ie
->
file_size
&&
!
is_file
_mode_changed
(
wditem
->
mode
,
ie
->
mode
))
{
!
is_file
mode_changed
(
wditem
->
mode
,
ie
->
mode
,
data
->
respect_file
mode
))
{
/* The workdir is modified iff the index entry is modified */
return
!
is_workdir_base_or_new
(
&
ie
->
id
,
baseitem
,
newitem
)
||
is_file
_mode_changed
(
baseitem
->
mode
,
ie
->
mode
);
is_file
mode_changed
(
baseitem
->
mode
,
ie
->
mode
,
data
->
respect_file
mode
);
}
/* depending on where base is coming from, we may or may not know
...
...
@@ -234,7 +238,7 @@ static bool checkout_is_workdir_modified(
if
(
S_ISDIR
(
wditem
->
mode
))
return
false
;
if
(
is_file
_mode_changed
(
baseitem
->
mode
,
wditem
->
mode
))
if
(
is_file
mode_changed
(
baseitem
->
mode
,
wditem
->
mode
,
data
->
respect_file
mode
))
return
true
;
if
(
git_diff__oid_for_entry
(
&
oid
,
data
->
diff
,
wditem
,
wditem
->
mode
,
NULL
)
<
0
)
...
...
@@ -2454,6 +2458,10 @@ static int checkout_data_init(
&
data
->
can_symlink
,
repo
,
GIT_CVAR_SYMLINKS
))
<
0
)
goto
cleanup
;
if
((
error
=
git_repository__cvar
(
&
data
->
respect_filemode
,
repo
,
GIT_CVAR_FILEMODE
))
<
0
)
goto
cleanup
;
if
(
!
data
->
opts
.
baseline
&&
!
data
->
opts
.
baseline_index
)
{
data
->
opts_free_baseline
=
true
;
error
=
0
;
...
...
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