I want to upload a file to an existing remote repository and use the repo as file storage. The repo will be very big, so i don't want to store it on my pc and also don't want to clone it every time i want to upload to it.
I thought i could just force push a commit with the new file to the remote, but that just overwrites everything. But doing a fetch or pull before just downloads the repo.
Is there any other way to do this or do you have to reverse engineer the push feature and make a custom git client?