Sub Tools/GitHub (1) 썸네일형 리스트형 git 사용방법 //git 설치 (https://git-scm.com/) //환경설정 (gitbash - 이름설정 - 이메일설정 -정보확인) git config --global user.name "홍길동" git config --global user.email "홍길동@email.com" git config --list //git - proj 연결 git init git add . git commit -m "프로젝트 설명" git remote add origin https:"깃 레퍼지토리 주소" git remote -v //git 원격 master push git push origin master //git 추가내용 업데이트 git add. git commit -m "프로젝트 설명" git push origin mast.. 이전 1 다음