Skip to content

petrushchako/git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GIT setup

Installation

Homebrew installation guide GIT installer download

Initial configuration

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

SSH Authentication

GitHub documentation

  • 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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published