ports/devel/git-lfs/pkg-message
Steve King 0e63cc894a devel/git-lfs: upgrade to 3.5.1.
PR:		ports/276332
Approved by:    egypcio (maintainer timeout, 4 months)
2025-01-26 01:16:36 -08:00

28 lines
650 B
Text

[
{ type: install
message: <<EOM
To get started with Git LFS, the following commands can be used:
1. Setup Git LFS on your system. You only have to do this once per
repository per machine:
$ git lfs install
2. Choose the type of files you want to track, for examples all ISO
images, with git lfs track:
$ git lfs track "*.iso"
3. The above stores this information in gitattributes(5) files, so
that file needs to be added to the repository:
$ git add .gitattributes
4. Commit, push and work with the files normally:
$ git add file.iso
$ git commit -m "Add disk image"
$ git push
EOM
}
]