My company has many inhouse tools hosted as Unity package manager packages on GitHub. This makes it relatively easy to setup new projects with shared code, but it also means that each developer machine needs to have git installed. At first this might not seem like a big deal, but especially after a year of working remotely, mostly from home and team members jumping between multiple work stations, we noticed that it’s a recurring issue. Especially non-tech people are baffled by the Unity popup that something is not working because of ominous Git something. Artists and external contractors simply want this to work and not deal with installing additional software (they already have to deal with installing the right Unity project version, which was greatly improved via the Hub, but also learn how to use PlasticSCM for example).
How can I make this easier for my team members? As far as I know, the official Unity packages to not require a custom git installation. How is this achieved? Is Unity hosting their packages with a different system or do they use a bundled git version? Wouldn’t it be possible for Unity to simply bundle a git version for use with the package manager? It shouldn’t be too large, could be made optional, or auto-detect that it’s required.
I’m not really set on using Git anyway, since we don’t use it for version control and I’m not a big fan myself, I wouldn’t mind switching to something else or potentially hosting the packages on our own server.
Or do people auto-install Git to their workstations via editor scripting? Would something like that be possible while the project is opening?