I am having problems with Git, when pushing to the remote repository.
I did set up my own server, which is on my network (on a linux machine running Debian). If I commit few files, everything is fine, but when I try to upload a folder that has many files (like a Unity project); then I get errors
I did check permissions and they are fine; I did check the disk space, and I have 10 Gb free, while the commit is about 900 Mb, so it is not a space issue either.
Reading some other post; someone mention that such issues may be related to the fact that Git on the server is not configured correctly; although I was not able to find exactly what parameters do you use to allow Git on the server to accept any number of files, when I do a push from my local Git repo to the one on the server.
The error that I get is this:
! [remote rejected] master -> master (n/a (unpacker error))
How do I actually tell Git on my server, to just take any number of files ? It would take me forever to upload the Unity project in this way otherwise.