You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everyone, I am trying to create a release using Electron Forge. It works fine but whenever I try to upload the out folder, GitHub complains that the files are too large.
How are you getting around this issue? Any help would be appreciated.
The text was updated successfully, but these errors were encountered:
Install the Git LFS client on your local machine. You can download the client from the Git LFS website (https://git-lfs.github.com/).
In your Git repository, configure Git LFS by running the following command in your terminal: git lfs install
Once Git LFS is installed, you can start tracking large files in your repository by running the following command: git lfs track "<file-pattern>"
Replace with the pattern of the files you want to track. For example, to track all files with the extension .zip, you would run: git lfs track "*.zip"
After tracking your files with Git LFS, commit and push your changes to GitHub as usual. The large files will be uploaded to the Git LFS server instead of being stored directly in the Git repository.
When looking for realses or pulling changes from your GitHub repository, Git LFS will automatically download the large files from the Git LFS server.
Hi everyone, I am trying to create a release using Electron Forge. It works fine but whenever I try to upload the
out
folder, GitHub complains that the files are too large.How are you getting around this issue? Any help would be appreciated.
The text was updated successfully, but these errors were encountered: