HackMyResume
HackMyResume copied to clipboard
Forking and cloning the project is giving a git issue
When I'm trying to clone the project or a forked repo of the project it is giving the below error, after trying to find a reason of what can be the issue I landed up on this link saying the project git setup may not be stable, please advice.
Siddharths-MacBook-Pro:github siddharthsharma$ git clone [email protected]:hearsid/HackMyResume.git
Cloning into 'HackMyResume'...
remote: Enumerating objects: 5468, done.
remote: Total 5468 (delta 0), reused 0 (delta 0), pack-reused 5468
Receiving objects: 100% (5468/5468), 3.17 MiB | 338.00 KiB/s, done.
Resolving deltas: 100% (3758/3758), done.
git-lfs filter-process: git-lfs: command not found
fatal: the remote end hung up unexpectedly
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry with 'git restore --source=HEAD :/
It says what's the problem: git-lfs filter-process: git-lfs: command not found
So you need to install it, if you are using homebrew then just launch brew install git-lfs
Cheers.