Do you keep backups of your project? Do you work solo or in a team? Well, in either of the cases, you should use consider using a repository!
The most popular type of repository is a git repository. The main feature of git is that it’s decentralized, which means that each of the contributors and server has its own copy of the whole repository. This minimizes the risk of losing progress in case of some disaster, as long as one copy survives.
So how can I set up the git repository for my project?
Continue reading “How to set up a git repository for a Unity project?”