FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
BitFun/.gitattributes at main · zzk2000/BitFun · GitHub
zzk2000
/
BitFun
Public
forked from
GCWing/OpenBitFun
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
BitFun
/
.gitattributes
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (35 loc) · 1.63 KB
Breadcrumbs
BitFun
/
.gitattributes
Copy path
File metadata and controls
38 lines (35 loc) · 1.63 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
#
**
#
Line-ending policy.
#
#
Git for Windows defaults to `core.autocrlf=true`, which rewrites every text
#
file to CRLF on checkout. Two BitFun paths break silently when that happens:
#
#
1. `src/apps/relay-server/*.sh` is embedded into the Desktop binary with
#
`include_str!` and uploaded verbatim to the relay host. A CR turns each
#
blank line into `$'\r': command not found`, and `set -e` aborts the
#
one-click deploy on the first one.
#
2. Rust raw string literals (`r#"..."#`) that hold remote bash carry the
#
checkout's CRLF into the generated scripts the same way.
#
#
Force LF for everything that has to run on a POSIX host, regardless of where
#
it was checked out. Windows-only scripts (`*.ps1`) are left alone — PowerShell
#
reads LF fine and pinning them would churn every non-Windows working tree.
#
**
*
.sh
text
eol
=
lf
*
.bash
text
eol
=
lf
*
.rs
text
eol
=
lf
*
.py
text
eol
=
lf
*
.mjs
text
eol
=
lf
*
.cjs
text
eol
=
lf
#
models.dev provenance hashes exact redistributed bytes. Keep these assets
#
stable across checkout platforms so the offline release check is reproducible.
src
/
crates
/
services
/
services-integrations
/
assets
/
models-dev.json
text
eol
=
lf
src
/
crates
/
services
/
services-integrations
/
assets
/
models-dev.LICENSE.txt
text
eol
=
lf
src
/
crates
/
services
/
services-integrations
/
assets
/
models-dev.provenance.json
text
eol
=
lf
Dockerfile
text
eol
=
lf
Dockerfile.
*
text
eol
=
lf
*
.Dockerfile
text
eol
=
lf
.dockerignore
text
eol
=
lf
docker-compose.yml
text
eol
=
lf
docker-compose.
*
.yml
text
eol
=
lf
Caddyfile
text
eol
=
lf
Back
|
FazBrowse Home
|
New Git URL