Viktor Kirillov
2 min readJan 2, 2019

Nowadays we have a lot of files and information to store. There are a lot of potentially useful services such as Dropbox, Google drive etc., but are they useful for you as a programmer?

There is a well-known service GitHub, which gives you ability to collaborate with other developers, store and share your code. And it is totally free, right? What if I will say that you can store your files there and get a direct link for that file from raw.github.com. If you already knew that, skip next section and move to smile 😎.

How to upload any file to GitHub?

Of course you can upload any file with GitHub UI, but cmooon. Who even told that it is convenient and easy?

We found the easiest way to store your files there via Command Line. Create a new branch for each uploading file, then commit it.

Finally, push this branch to GitHub:

git push --set-upstream origin $BRANCHNAME

After that, you can delete all local branch files to save disk space:

git checkout master
git branch -D $BRANCHNAME

Would you like this way of uploading for each of your files? I don’t like it too. Thats why we found a solution! πŸ‘‡

😎 What if I’ll say that we simplified all this process for you?

What if I’ll say that we created a service which can create Free & Unlimited Cloud Storage directly in your GitHub account right in one click?

Yes, it is not a dream, we brought it to life!

πŸ‘‰ Check out our Website.

πŸ‘‰ Check out our GitHub page.

πŸš€ Upvote us on ProductHunt.

πŸ€– Our Telegram chat.

On site Docs or Github page you can find one-click guide to install your own Free Unlimited Cloud Storage.

πŸ“‘ Also we created an API endpoint, so you can use our services anywhere in your project.