-
This is related to #1099 but happens when a whole folder is tracked by lfs and a .gitattributes file is added in it.
Basically while lfs prevents you from tracking a .gitattributes file directly it…
-
We can use this to specify git configurations such as respecting line endings when cloning the repo. This will allow for a greater level of consistency across various reversing environments.
-
Ripgrep usually ignores binary files quickly and correctly. Sometimes a versioned file may be tagged as binary in `.gitattributes`, because it contains binary data only towards the end of the file, be…
-
Into `.gitattributes`:
```js
*.lockb binary diff=lockb
```
Into `.git/config`:
```
[diff "lockb"]
textconv = bun
binary = true
```
-
I happened to notice that multiple Privacy Badger related repositories have a `.editorconfig` which specifies `end_of_line = lf`. However it's possible that individual contributors have git configured…
-
I noticed that the project doesn't implement the feature of `setuptools-scm` to deduce versions out of Git archives. It used to be a third party plugin and now its a part of the library.
To enable …
-
### Sail Version
1.38.0
### Laravel Version
11.32.0
### PHP Version
8.3.13
### Operating System
macOS
### OS Version
14.6.1
### Description
Recently, I’ve started gett…
-
Same as Visual Studio stuff needs to keep CRLF (even on non-Windows systems), shell scripts need to keep LF (even on Windows systems).
So we need to add a list of files for which this is true:
```
#…
-
These files can be found in the CodeExport project directory. The `.gitattributes` file is important for fixing bugs which arise in Excel due to using Unix style line terminations. The other files hel…
-
It would be a very good idea for VSCode to take into account the ".gitattributes" file to apply the encoding when opening files.
```
*.html encoding=utf-8
*.c encoding=cp1252
```