Skip to content

git-lfs: update page and add Dutch translation #17217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions pages.nl/common/git-lfs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# git lfs

> Werk met grote bestanden in Git repositories.
> Meer informatie: <https://github.com/git-lfs/git-lfs/tree/main/docs>.

- Initialiseer Git LFS:

`git lfs install`

- Houd bestanden bij die overeenkomen met een glob:

`git lfs track '{{*.bin}}'`

- Verander de Git LFS-eindpunt URL (handig als de LFS-server gescheiden is van de Git-server):

`git config {{[-f|--file]}} .lfsconfig lfs.url {{lfs_eindpunt_url}}`

- Toon patronen die worden bijgehouden:

`git lfs track`

- Toon bestanden die worden bijgehouden en gecommit zijn:

`git lfs ls-files`

- Push alle Git LFS-objecten naar de externe server (handig als er fouten optreden):

`git lfs push --all {{externe_naam}} {{branch_naam}}`

- Haal alle Git LFS-objecten op:

`git lfs fetch`

- Vervang pointerbestanden met werkelijke Git LFS-objecten:

`git lfs checkout`
2 changes: 1 addition & 1 deletion pages/common/git-lfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@

`git lfs fetch`

- Checkout all Git LFS objects:
- Replace pointer files with actual Git LFS objects:

`git lfs checkout`