Skip to content

Commit

Permalink
Add git-lfs install instructions with package manager (#240)
Browse files Browse the repository at this point in the history
Co-authored-by: Devin Altobello <[email protected]>
  • Loading branch information
daltobello and daltobello authored Aug 27, 2024
1 parent 21febff commit 2822f5f
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions heat-stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,32 @@

### On your computer

Install Git Large File Storage with Homebrew, see [docs](https://git-lfs.com/).
```
# install Git Large File Storage
docs here: https://git-lfs.com/
Homebrew: brew install git-lfs
run the command: git lfs install
brew install git-lfs
git lfs install
```

Alternatively, you can install Git Large File Storage using a package manager, see [docs](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage).
- Navigate to git-lfs.com and click Download
- On your computer, locate and unzip the downloaded file
- Open Terminal
- Change the current working directory into the folder you downloaded and unzipped.
```
cd ~/Downloads/git-lfs-1.X.X
```
- To install the file, run this command:
```
$ ./install.sh
> Git LFS initialized.
```
- Next, make required changes to your global Git config:
```
$ git lfs install
> Git LFS initialized.
```
- You should see a message indicating that git lfs install was successful

Proceed to clone the repository
```
git clone [email protected]:codeforboston/home-energy-analysis-tool.git
# create an environment file
Expand Down

0 comments on commit 2822f5f

Please sign in to comment.