Skip to content

Commit 3b0d039

Browse files
committed
Correction
1 parent 4e5334d commit 3b0d039

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/remote/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ git config --global core.autocrlf input
291291
Next, you can prevent others from facing this issue regardless of their setting by adding or modifying a `.gitattributes` file in your repository. For example, this will force everything to be LF except for Windows batch files that require CRLF:
292292

293293
```yaml
294-
*.* text eol=lf
294+
* text=auto eol=lf
295295
*.{cmd,[cC][mM][dD]} text eol=crlf
296296
*.{bat,[bB][aA][tT]} text eol=crlf
297297
```
@@ -564,7 +564,7 @@ git config --global core.autocrlf input
564564
Next, you can prevent others from facing this issue regardless of their setting by adding or modifying a `.gitattributes` file in your repository. For example, this will force everything to be LF except for Windows batch files that require CRLF:
565565

566566
```yaml
567-
*.* text eol=lf
567+
* text=auto eol=lf
568568
*.{cmd,[cC][mM][dD]} text eol=crlf
569569
*.{bat,[bB][aA][tT]} text eol=crlf
570570
```

0 commit comments

Comments
 (0)