Creates the related GitHub's SSH configuration on drive C
.
- Create a new directory to store your credentials inside the
C
drive (/
), then create a hidden.ssh
directory inside it:
# Create directories
mkdir "/MyGitHub"
cd "/MyGitHub"
mkdir ".ssh"
# Create a new config file
New-Item "/MyGitHub\.ssh\config" -ItemType "file"