notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
Port details on branch 2024Q4
git-lfs Git extension for versioning large files
3.0.2_23 devel on this many watch lists=4 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 3.0.2_23Version of this port present on the latest quarterly branch.
Maintainer: egypcio@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2015-11-19 13:02:07
Last Update: 2024-08-09 06:24:08
Commit Hash: aa8c011
People watching this port, also watch:: psutils, dbus, libevent, indexinfo, p5-Error
License: MIT
WWW:
https://git-lfs.github.com/
Description:
Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (40 items)
Collapse this list.
  1. /usr/local/share/licenses/git-lfs-3.0.2_23/catalog.mk
  2. /usr/local/share/licenses/git-lfs-3.0.2_23/LICENSE
  3. /usr/local/share/licenses/git-lfs-3.0.2_23/MIT
  4. bin/git-lfs
  5. share/man/man1/git-lfs-checkout.1.gz
  6. share/man/man1/git-lfs-clean.1.gz
  7. share/man/man1/git-lfs-clone.1.gz
  8. share/man/man1/git-lfs-dedup.1.gz
  9. share/man/man1/git-lfs-env.1.gz
  10. share/man/man1/git-lfs-ext.1.gz
  11. share/man/man1/git-lfs-fetch.1.gz
  12. share/man/man1/git-lfs-filter-process.1.gz
  13. share/man/man1/git-lfs-fsck.1.gz
  14. share/man/man1/git-lfs-install.1.gz
  15. share/man/man1/git-lfs-lock.1.gz
  16. share/man/man1/git-lfs-locks.1.gz
  17. share/man/man1/git-lfs-logs.1.gz
  18. share/man/man1/git-lfs-ls-files.1.gz
  19. share/man/man1/git-lfs-migrate.1.gz
  20. share/man/man1/git-lfs-pointer.1.gz
  21. share/man/man1/git-lfs-post-checkout.1.gz
  22. share/man/man1/git-lfs-post-commit.1.gz
  23. share/man/man1/git-lfs-post-merge.1.gz
  24. share/man/man1/git-lfs-pre-push.1.gz
  25. share/man/man1/git-lfs-prune.1.gz
  26. share/man/man1/git-lfs-pull.1.gz
  27. share/man/man1/git-lfs-push.1.gz
  28. share/man/man1/git-lfs-smudge.1.gz
  29. share/man/man1/git-lfs-standalone-file.1.gz
  30. share/man/man1/git-lfs-status.1.gz
  31. share/man/man1/git-lfs-track.1.gz
  32. share/man/man1/git-lfs-uninstall.1.gz
  33. share/man/man1/git-lfs-unlock.1.gz
  34. share/man/man1/git-lfs-untrack.1.gz
  35. share/man/man1/git-lfs-update.1.gz
  36. share/man/man1/git-lfs.1.gz
  37. share/man/man5/git-lfs-config.5.gz
  38. @owner
  39. @group
  40. @mode
Collapse this list.
Dependency lines:
  • git-lfs>0:devel/git-lfs
To install the port:
cd /usr/ports/devel/git-lfs/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/git-lfs
  • pkg install git-lfs
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: git-lfs
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1642406951 SHA256 (git-lfs-v3.0.2.tar.gz) = 7179a357a0d0e7beaba217489f7f784ca8717035a5e3f1ee91ca7193ba3a35f3 SIZE (git-lfs-v3.0.2.tar.gz) = 3126121

Packages (timestamps in pop-ups are UTC):
git-lfs
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest3.0.2_233.0.2_23-3.0.2_233.0.2_23---
FreeBSD:13:quarterly3.0.2_233.0.2_23-3.0.2_233.0.2_23---
FreeBSD:14:latest3.0.2_233.0.2_23-3.0.2_233.0.2_23---
FreeBSD:14:quarterly3.0.2_233.0.2_23-3.0.2_233.0.2_23---
FreeBSD:15:latest3.0.2_233.0.2_23n/a3.0.2_23n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. ronn : textproc/rubygem-ronn
  2. go121 : lang/go121
Runtime dependencies:
  1. git : devel/git
This port is required by:
for Fetch
  1. biology/gatk
  2. graphics/oidn
for Run
  1. www/forgejo
  2. www/forgejo7
  3. www/gitea

Configuration Options:
===> The following configuration options are available for git-lfs-3.0.2_23: MANPAGES=on: Build and/or install manual pages ===> Use 'make config' to modify these settings
Options name:
devel_git-lfs
USES:
go:modules
pkg-message:
For install:
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 need 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
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://github.com/git-lfs/git-lfs/releases/download/v3.0.2/
Collapse this list.

There are no commits on branch 2024Q4 for this port