@@ -22,7 +22,7 @@ There are technical reasons in Git's design to make this extra step necessary:
...
@@ -22,7 +22,7 @@ There are technical reasons in Git's design to make this extra step necessary:
Even if you work alone, this is a bit of a hassle — it gets much worse if other people have clones, because history change requires everyone involved to confirm the deletion with their clone.
Even if you work alone, this is a bit of a hassle — it gets much worse if other people have clones, because history change requires everyone involved to confirm the deletion with their clone.
### Optional: More technical details
**Optional, technical details:**
With the Git LFS extension, you can version control (large) files "in association" with a Git repository.
With the Git LFS extension, you can version control (large) files "in association" with a Git repository.
Instead of storing a file within the Git repository as a *blob*, Git LFS only stores *pointer files* in the repository, but stores the actual file contents on a (separate) Git LFS server (and locally, in another folder).
Instead of storing a file within the Git repository as a *blob*, Git LFS only stores *pointer files* in the repository, but stores the actual file contents on a (separate) Git LFS server (and locally, in another folder).
A file tracked by Git LFS gets downloaded only if needed, e.g. when you check out a Git branch containing the tracked file (but it also gets cached locally, if you downloaded it before).
A file tracked by Git LFS gets downloaded only if needed, e.g. when you check out a Git branch containing the tracked file (but it also gets cached locally, if you downloaded it before).
...
@@ -47,7 +47,7 @@ With this in mind, using Git LFS may be a natural choice, if:
...
@@ -47,7 +47,7 @@ With this in mind, using Git LFS may be a natural choice, if:
5. all machines that need to access these files have network access to the LFS server.
5. all machines that need to access these files have network access to the LFS server.
### Optional: External Git LFS server
**Advanced option: External Git LFS server**
As an alternative to storing LFS data on JLU GitLab, you could store LFS data on an external server, while still using JLU GitLab to host your project.
As an alternative to storing LFS data on JLU GitLab, you could store LFS data on an external server, while still using JLU GitLab to host your project.
For example, your workgroup could run their own Git LFS server; you can choose from e.g. [this list](https://github.com/git-lfs/git-lfs/wiki/Implementations).
For example, your workgroup could run their own Git LFS server; you can choose from e.g. [this list](https://github.com/git-lfs/git-lfs/wiki/Implementations).
The advantage of an external LFS server is independence from JLU GitLab; e.g. you could implement different policies, such as potentially more suitable security practices.
The advantage of an external LFS server is independence from JLU GitLab; e.g. you could implement different policies, such as potentially more suitable security practices.
...
@@ -66,10 +66,10 @@ The following tips make the following assumptions:
...
@@ -66,10 +66,10 @@ The following tips make the following assumptions:
### Basic use
### Basic use
1. Set up Git LFS; you have to do this once per machine and repository: `$ git lfs install`.
1. Set up Git LFS; you have to do this once per machine and repository: `$ git lfs install`.
2. In your local repository, choose what types of files to track by LFS.
2. In your local repository, choose what types of files to track by LFS.
- For example, to track all `CSV` files, type: `$ git lfs track "*.csv"`.
- For example, to track all CSV files, type: `$ git lfs track "*.csv"`.
- This will create/change the Git configuration file [`.gitattributes`](.gitattributes).
- This will create/change the Git configuration file [`.gitattributes`](.gitattributes).
You should track this configuration change in the repository itself, with the usual Git commands `$ git add .gitattributes` and `$ git commit -m "start tracking CSV files with LFS"`.
You should track this configuration change in the repository itself, with the usual Git commands `$ git add .gitattributes` and `$ git commit -m "start tracking CSV files with LFS"`.
*Note that because the file name `.gitattributes` starts with a dot, it may be hidden from view (on Linux and MacOS, use `$ ls -a` to see it; FIXME: What to do on Windows?).*
-*Note: Because the file name `.gitattributes` leads with a dot, it may be hidden from view (to list it, use `$ ls -a` on Linux/MacOS, or FIXME: What to do on Windows?).*
3. Now you can interact with the LFS-tracked files in the usual way to control versions with Git.
3. Now you can interact with the LFS-tracked files in the usual way to control versions with Git.
For example, to make a new snapshot with a file `some_data.csv`, use the usual commands `add`, `commit`, and `push` like any other file in the repository:
For example, to make a new snapshot with a file `some_data.csv`, use the usual commands `add`, `commit`, and `push` like any other file in the repository:
```
```
...
@@ -79,22 +79,19 @@ The following tips make the following assumptions:
...
@@ -79,22 +79,19 @@ The following tips make the following assumptions:
```
```
### Optional: File locking mechanism
### Option: Prevent download of LFS files
FIXME: Clarify locking mechanism, may be especially relevant for people working in teams, see https://github.com/git-lfs/git-lfs/wiki/File-Locking.
You may want to work with a Git repository but prevent all LFS files from download.
For example, you may want to clone a repository on a machine where you simply don't require the large files.
Or maybe you want to work with a clone on a machine without network access, leading to LFS errors.
### Optional: Ignore LFS files
You may want to work with a Git repository but ignore the (large) files stored by LFS.
For example, you may want to clone a repository on a machine that doesn't have access to the Git LFS server, or you simply don't require the large files.
To temporally ignore the LFS content, you can set the [environment variable](https://en.wikipedia.org/wiki/Environment_variable) called `GIT_LFS_SKIP_SMUDGE` to the value `1`.
To temporally ignore the LFS content, you can set the [environment variable](https://en.wikipedia.org/wiki/Environment_variable) called `GIT_LFS_SKIP_SMUDGE` to the value `1`.
To stop ignoring LFS, set the variable to `0`.
(And to stop ignoring LFS files, just set the variable to `0`.)
The syntax to set the variable depends on your command line interface:
The syntax to set the variable depends on your command line interface:
- On Windows, type `$ set GIT_LFS_SKIP_SMUDGE=1`.
- On Windows, type `$ set GIT_LFS_SKIP_SMUDGE=1`.
- For Bash (e.g. Linux), type `$ export GIT_LFS_SKIP_SMUDGE=1`.
- For Bash (e.g. Linux), type `$ export GIT_LFS_SKIP_SMUDGE=1`.
After that, you can e.g. clone the repository without downloading the LFS files:
After that, you can e.g. clone the repository like usual, without an attempt to download the LFS files: