Skip to content

Commit 1563930

Browse files
authored
feat(git): Initial config to LFS (#86)
Este PR adiciona suporte ao Git LFS (Large File Storage) na configuração dos dotfiles. O Git LFS permite o versionamento eficiente de arquivos grandes, evitando que o repositório fique lento ou sobrecarregado. Esta atualização facilita o gerenciamento de arquivos binários ou de grande porte.
1 parent 1d9788b commit 1563930

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gitconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,8 @@
5959
l = "log --graph --topo-order --pretty=format:'%C(yellow)%H%C(red)%d%n%C(reset)%C(blue)%an <%ae>%n%C(cyan)%aD (%ar)%C(reset)%n%+B'"
6060
lg = "log --graph --all --pretty=format:'%Cred%h%Creset - %Cgreen(%cr)%Creset %s%C(yellow)%d%Creset %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"
6161
graph = "log --graph --all --pretty=format:'%Cred%h%Creset - %Cgreen(%cr)%Creset %s%C(yellow)%d%Creset' --abbrev-commit --date=relative"
62+
[filter "lfs"]
63+
required = true
64+
clean = git-lfs clean -- %f
65+
smudge = git-lfs smudge -- %f
66+
process = git-lfs filter-process

0 commit comments

Comments
 (0)