Search code examples
asp.net-mvc-4githubopen-source

Upload project zipped to github and unzip after uploading


I have opensource project needed to be uploaded to GitHub when I upload it unzipped it takes a lot of time to do so so I'm asking for a way to upload it zipped and unzip it after uploading it thanks in advance :)


Solution

  • You will have no choice but to do a regular git push. This will be as fast as uploading a zipped archive, maybe even faster.

    Try using ssh and not https for your remote connection.