Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a way to fix files that can't put up more than 100mb? #122

Open
xiaowine opened this issue May 5, 2022 · 2 comments
Open

Is there a way to fix files that can't put up more than 100mb? #122

xiaowine opened this issue May 5, 2022 · 2 comments

Comments

@xiaowine
Copy link

xiaowine commented May 5, 2022

No description provided.

@DevJamesC
Copy link

DevJamesC commented May 6, 2022

Hi, I believe you need to use git LFS for large files. Since this action only handles pushing, you can use LFS before you commit changes to your repo.

example of LFS syntax (don't trust my spacing)
run: |
git lfs track ".zip" ".pdf" ...ect
...make your changes to the repo
echo 'Adding git commit'
git add .
echo 'git status'
git status
echo 'git lfs status'
git lfs ls-files
...you should see your large file tracked here
git commit --message 'comitting large file'

Admittedly, I hit a different issue before my push works, so I don't know if this will fix your issue.

@devenes
Copy link

devenes commented Oct 18, 2022

Github does support uploading and managing large files at once. Check out Git LFS. Using this you can manage/upload & control your project/repo having sizes larger than 100mb, noting that tha maximum repository size is less than equal to 10GB for free tier. If you want increase the size further, Github provides organizational level grants where it's a pay as you scale model.

See Git LFS: https://git-lfs.github.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants