개발툴 (1) 썸네일형 리스트형 git 설치 및 세팅 1. git 다운로드 2. github 가입 및 repository(저장소) 만들기 3. 사용자 이메일 및 이름 입력하기 git config --global user.email "you@example.com" git config --gloval user.name "your name" 3. 작업중인 폴더에 git 초기화 (cmd 또는 gitbash) git init 4. 원격 저장소 연결 git remote add origin 저장소주소 5. 변경된 내용 stage에 올리기 git add . 6. add 한 내용 commit 하기 git commit -m "커밋내용서술" 7. 커밋한 내용 원격저장소에 올리기 git push -u origin master git 명령어 모음 (cmd, gitbash) *현재.. 이전 1 다음