You are missing some important information in your question:
- What kind of Git server do you have?
- Are you stuck with source-control-explorer?
Git is a decentralized SCM, it means you can work with or without a server and the commands push
and pull
are not required to do development. Back in the early version of Git, developers used emails to share their patches.
The possible issue you may encounter is that you did not use a bare-repository as the central repository. Take a look at this question.
Few years ago I was in the same situation as yours. I was working on a closed network without the possibility to install additional software. So we simply used Git on its own.
We created a bare-repository somewhere on the network and every developers added it as their remote origin
. If you have write permissions on this Windows share it will work.
About the UI, they are many Git frontend, some are good, others are less intuitive. In overall I was always disappointed with IDE integrated Git UI (VS Code, Visual Studio...). So I would recommend to use Atlassian Source Tree which is free and intuitive.
But, if you want to use the real power of Git you had better to get familiarized with the command line interface. The learning curve is steep, but at the end of the day you will love it. I personally never use any GUI because there is no way I can use the full power of Git.