형상 관리/github
-
Github 사용법형상 관리/github 2019. 7. 10. 21:27
1. 회원가입 https://github.com Build software better, together GitHub is where people build software. More than 36 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com 2. Repository 생성 3. 저장 경로 생성하여 초기화 a. D 드라이브에 Git 폴더 생성 => D:\Git b. cmd화면 집입하여 생성된 경로로 이동 => cd D:\Git c. 아래 명령어 실행 echo "# remind_2019" >> README.md git init git add README.md git comm..