FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
isaacscript/.gitattributes at main · IsaacScript/isaacscript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
IsaacScript
/
isaacscript
Public
Notifications
You must be signed in to change notification settings
Fork
27
Star
84
Code
Issues
0
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
isaacscript
/
.gitattributes
Copy path
More file actions
More file actions
Latest commit
History
History
History
49 lines (40 loc) · 2.08 KB
Breadcrumbs
isaacscript
/
.gitattributes
Copy path
File metadata and controls
49 lines (40 loc) · 2.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
https://git-scm.com/docs/git-config/#Documentation/git-config.txt-coreautocrlf
#
Default value: input
#
Explicitly setting it to false prevents Git from changing line endings at any point, which can
#
prevent issues when Windows users collaborate with MacOS/Linus users.
core.autocrlf=false
#
https://git-scm.com/docs/git-config/#Documentation/git-config.txt-coreignoreCase
#
Default value: false (on Linux machines) or true (on Windows machines)
#
Explicitly setting it to false prevents the issue where Windows users cannot pull down
#
casing-related file renames.
core.ignoreCase=false
#
https://git-scm.com/docs/git-config/#Documentation/git-config.txt-pullrebase
#
Default value: false
#
Setting this prevents spurious merge commits:
#
https://www.endoflineblog.com/gitflow-considered-harmful
pull.rebase=true
#
Convert all files to use "\n" line endings.
*
text
=
auto
eol
=
lf
#
Specify the file type for some binary files to prevent Git from changing the line endings upon
#
cloning the repository.
*
.mp3
binary
*
.png
binary
*
.wav
binary
#
Specify the file type for some files that GitHub will not automatically characterize properly.
#
https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
.vscode
/
*
.json
linguist-language
=
JSON-with-Comments
tsconfig
*
.json
linguist-language
=
JSON-with-Comments
#
Suppress displaying changes on certain files to prevent cluttering commit diffs on GitHub.
package-lock.json
linguist-generated
=
true
yarn.lock
linguist-generated
=
true
pnpm-lock.yaml
linguist-generated
=
true
bun.lock
linguist-generated
=
true
#
@template-customization-start
#
Specify the file type for files specific to this monorepo.
#
https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
api-extractor.json
linguist-language
=
JSON-with-Comments
_gitattributes
linguist-language
=
Git-Attributes
_gitignore
linguist-language
=
Ignore-List
packages
/
isaacscript-cli
/
file-templates
/
static
/
.vscode
/
extensions.json
linguist-language
=
JSON-with-Comments
packages
/
isaacscript-cli
/
file-templates
/
static
/
.vscode
/
settings.json
linguist-language
=
JSON-with-Comments
#
@template-customization-end
Back
|
FazBrowse Home
|
New Git URL