Rather than using default location and filenames like id_rsa and id_rsa.pub in .ssh:
Create a new file in .ssh directory (C:/Users/Username/.ssh) named "config", remove file extension if the editor adds one.
Inside "config" file add:
```
Host github github.com
HostName github.com
IdentityFile drive:/path/to/key/filename
User git
```
Added full path but can probably use relative?
Use quotes in file path if there are spaces in directory names.