It is similar to this other question, but the problem here is to use git LFS
version 2.4. Today, apt
, etc. only installs git LFS v2.0.2, even upgrading by apt with PPA, etc. same v2.0.
How to change to v2.4?
It is similar to this other question, but the problem here is to use git LFS
version 2.4. Today, apt
, etc. only installs git LFS v2.0.2, even upgrading by apt with PPA, etc. same v2.0.
How to change to v2.4?
According to the official git LFS documentation at https://github.com/git-lfs/git-lfs/wiki/Installation, to install the latest version of git-lfs on any Ubuntu:
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt-get install git-lfs
git lfs install
I just installed git-lfs version 2.4.2 on Ubuntu 16.04 LTS using the script.deb.sh
script from packagecloud.io git-lfs page.
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt-get install git-lfs
Probably updating and upgrading your apt packages is enough for you.
curl
and apt-get
lines as the cited reference... So, no news in this answer?
– Peter Krauss
Oct 07 '19 at 13:11
curl
andapt-get
lines as @talamaki and same as cited reference... So, no news in this answer? – Peter Krauss Oct 07 '19 at 13:07