Mac 기록해주세요. -git 연결.

1226 단어 프로그램 설치
name 및 이메일 만들기
git config --global user.name "name"
git config --global user.email "email"

키 만들기
ssh-keygen -t rsa -C "email"

키 보기
cat .ssh/id_rsa.pub

github에 키 추가
연결 확인
ssh -T [email protected] 

github에서 창고를 복사하는 ssh
시도:
cd /Users/name/Desktop/

데스크톱으로 복제:
git clone [email protected]:name/LearnGit.git

수정 사항을 커밋하려면 다음과 같이 하십시오.
cd /Users/name/Desktop/LearnGit 
// (. )
git add .
// 
git commit -m "First Commit"
// github
git push

좋은 웹페이지 즐겨찾기