Github repo help #189178
Replies: 2 comments
-
|
if you have your github account connected to your git just do these from the projects root: about your large files, just remove them if they are not necessary. (just add them into a .gitignore file so they dont upload to github) If you want to push them too try to pack up the files... |
Beta Was this translation helpful? Give feedback.
-
|
It looks like you’re very close — the structure of your project is already fine. The issues you mentioned (large file error and folders not carrying over) are pretty common when pushing a repo for the first time. Here are a few suggestions from my side that might help. 1. Folder structure in GitHubGit actually tracks files, not empty folders. So if a folder has no tracked files, it won’t appear on GitHub. Fix:
This forces Git to include the folder in the repo. 2. Large file issueGitHub normally blocks files larger than 100MB. If your dataset or model files are big (which is common in ML projects), you have a few options. Option A — Use
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
i am trying to upload a project to github and make it a repo. The issue I keep running into is there is a file too large. Also, something that I want to do for the project is have my folders carry over, but I have not been able to figure it out.

This is project I want to make a repo. Please any info would help.
Beta Was this translation helpful? Give feedback.
All reactions