forked from ScoopInstaller/Main
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(chore): Fix git conflicts with line endings (ScoopInstaller#3693)
* Update .editorconfig * Update .gitattributes
- Loading branch information
1 parent
c34e34c
commit df10303
Showing
2 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# retain windows line-endings in case checked out on mac or linux | ||
* text eol=crlf | ||
# Since Scoop is a Windows-only tool, we can safely use CRLF line endings for all text files. | ||
# If Git decides that the content is text, its line endings will be normalized to CRLF in the working tree on checkout. | ||
# In the Git index/repository the files will always be stored with LF line endings. This is fine. | ||
* text=auto eol=crlf |