How to push only non-lfs files onto github repository. #144975
Unanswered
zorone
asked this question in
Repositories
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Select Topic Area
Question
Body
I have an issue with git LFS on Github for quite some time now, as it is now full. I start looking for a way to mitigate this issue. But I still don't fully understand how git LFS works. So I'm stuck at where I am now. I don't really sure if I use git LFS as its intention or not. As I put all binary files inside my repos. I know I shouldn't do that, but I am the only one using it. So it should be fine.
My original idea for mitigating this issue is by doing local git hosting. the repository will have 2 remotes,
origin
, andlfs
.origin
will point to my github repos. Andlfs
will point to my internal disk, like this.This is my configuration (I config them based on my existing repos):
And I suppose I was done.
But it doesn't actually solve the problem. Normally, I use
git push
to push toorigin
, andgit push lfs
to push tolfs
. But when I usegit push
, It still also push git lfs over to github. Which isn't what I want.Any ideas? I want to do this so bad but it doesn't work as I wish it does. Thank you.
Beta Was this translation helpful? Give feedback.
All reactions