코드 관리 도구의github

1437 단어 기술 도구
1. github 사이트에 계정을 하나 등록한다.https://github.com 2.git:git-for-windows 다운로드.github.io/ 3.계정 설정
git config --global user.name "Your Name"
git config --global user.email "[email protected]"

4. 클론 코드:git clonehttps://github.com/WuXiaolong/WeWin.git 5.github 커밋 코드에는 SSH 라이센스가 필요합니다.
ssh-keygen -t rsa -C "[email protected]"

6. GitHub에서 GitHub에 로그인하도록 설정하고 "Account settings", "GitHub"페이지에 "Add SSH Key"를 누르고 Title을 입력하여 Key 텍스트 상자에 id 를 붙여넣습니다rsa.pub 파일의 내용입니다.
코드 커밋
git add README.md
git commit -m "first commit"

푸시 코드
git push origin master
git remote add origin          //           

git push -u origin master    //       

git push origin master  //       ,             

git 사용

좋은 웹페이지 즐겨찾기