ITEM |
ACTION |
GITHUB |
- Login: http://github.gatech.edu/ login with GT credentials
- Create a new Repository (Repo):
- Under "Repositories" tab create a new private project, e.g. "Project"
- Select "initialize it with a README file"
|
LOCAL |
|
Errors |
- fatal: unable to access 'https://github.gatech.edu/ ...': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
export GIT_SSL_NO_VERIFY=1
|
SSH keys |
- Generate SSH key or get it from: git gui ( Help >> Show SSH key )
ssh-keygen -t rsa -b 4096 -C "GTID@gatech.edu"
- Start the ssh-agent in the background:
eval "$(ssh-agent -s)"
- Add SSH key to the ssh-agent:
ssh-add ~/.ssh/id_rsa
|
GUIs |
|
REF |
|