If the Repo Exists Remotely

Windows

Open CMD. Navigate to the desired folder using cd. Run git clone <remote_URL>

Or, to do it the long way,

Open CMD. Navigate to the desired folder using cd. Run git init. Run git remote add origin <remote URL> Run git fetch origin Run git checkout --track origin/master

Linux

Open the Terminal. Navigate to the desired folder using cd. Run git clone <remote_URL>

Or, to do it the long way,

Open CMD. Navigate to the desired folder using cd. Run git init. Run git remote add origin <remote URL> Run git fetch origin Run git checkout --track origin/master