Homebrew installation guide GIT installer download
git -v #Verify installation
git config user.name "Alex Petrushchak" #Add name
git config user.name #View name
git config user.email "[email protected]" #Add Email
git config user.email #Verify email
- Generate key (MAC commands)
ssh-keygen -t ed25519 -C "[email protected]"
- Start the ssh-agent in the background.
$ eval "$(ssh-agent -s)"
Output: > Agent pid 59566
- Add ssh key to agent
ssh-add --apple-use-keychain ~/.ssh/id_ed25519
- Add the SSH public key to your account on GitHub.