1) Create an account on Github https://github.com/ 2) Install Gitbash from following URL: https://git-scm.com/downloads 3) Set up Github repositories: Go to start -> all programs -> git -> Open ‘Git bash’ On Command prompt: Step 1: git config --global user.name "YOUR NAME" Step 2: git config --global user.email "YOUR EMAIL ADDRESS" Step 3: Generate new SSH Keys as follows: Enter following command: ssh-keygen -t rsa -b 4096 -C "email@example.com" Press Enter Message displayed: Created directory '/p/.ssh'. Step 4: Create a passphrase: Enter your passphrase. ( it can be different than your password) Note: While setting pass phrase, the cursor doesn’t mov...