If the Repo Exists Remotely
Windows
Open CMD. Navigate to the desired folder using
cd. Rungit clone <remote_URL>
Or, to do it the long way,
Open CMD. Navigate to the desired folder using
cd. Rungit init. Rungit remote add origin <remote URL>Rungit fetch originRungit checkout --track origin/master
Linux
Open the Terminal. Navigate to the desired folder using
cd. Rungit clone <remote_URL>
Or, to do it the long way,
Open CMD. Navigate to the desired folder using
cd. Rungit init. Rungit remote add origin <remote URL>Rungit fetch originRungit checkout --track origin/master