Configuration - MatKarp/Javascript-Training GitHub Wiki
Configuration
Sing on Github: Link
- Use real name, surname and email that contains them.
Clone Git repository: Link
-
Chose or create folder for project f.e. "C:/Workspace/".
-
Go inside folder and on empty space press right mouse button and from context menu chose "Git Bash here".
-
Configure Git in command line. Link
git config --global user.name "John Doe"
git config --global user.email [email protected] -
Generate pair of ssh keys(this is for Github repository to recognize your computer). Link
ssh-keygen
cat ~/.ssh/id_rsa.pub
Copy everything from here and paste your public key to Github/top right profile icon/Settings/SSH and GPG keys/New SSH key (title is irrelevant). -
Clone project to local folder
Open command line in project folder.
git clone [email protected]:MatKarp/Javascript-Training.git
Now you should have cloned all the files in your local repository.