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
99ec4fdb
Commit
99ec4fdb
authored
Apr 17, 2018
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crlf: wrap line
parent
2ad24a4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/crlf.c
+4
-2
No files found.
src/crlf.c
View file @
99ec4fdb
...
@@ -306,7 +306,8 @@ static int crlf_check(
...
@@ -306,7 +306,8 @@ static int crlf_check(
return
GIT_PASSTHROUGH
;
return
GIT_PASSTHROUGH
;
if
(
ca
.
crlf_action
==
GIT_CRLF_GUESS
||
if
(
ca
.
crlf_action
==
GIT_CRLF_GUESS
||
((
ca
.
crlf_action
==
GIT_CRLF_AUTO
||
ca
.
crlf_action
==
GIT_CRLF_TEXT
)
&&
((
ca
.
crlf_action
==
GIT_CRLF_AUTO
||
ca
.
crlf_action
==
GIT_CRLF_TEXT
)
&&
git_filter_source_mode
(
src
)
==
GIT_FILTER_SMUDGE
))
{
git_filter_source_mode
(
src
)
==
GIT_FILTER_SMUDGE
))
{
error
=
git_repository__cvar
(
error
=
git_repository__cvar
(
...
@@ -318,7 +319,8 @@ static int crlf_check(
...
@@ -318,7 +319,8 @@ static int crlf_check(
ca
.
auto_crlf
==
GIT_AUTO_CRLF_FALSE
)
ca
.
auto_crlf
==
GIT_AUTO_CRLF_FALSE
)
return
GIT_PASSTHROUGH
;
return
GIT_PASSTHROUGH
;
if
(
ca
.
auto_crlf
==
GIT_AUTO_CRLF_INPUT
&&
ca
.
eol
!=
GIT_EOL_CRLF
&&
if
(
ca
.
auto_crlf
==
GIT_AUTO_CRLF_INPUT
&&
ca
.
eol
!=
GIT_EOL_CRLF
&&
git_filter_source_mode
(
src
)
==
GIT_FILTER_SMUDGE
)
git_filter_source_mode
(
src
)
==
GIT_FILTER_SMUDGE
)
return
GIT_PASSTHROUGH
;
return
GIT_PASSTHROUGH
;
}
}
...
...
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