깃 다운 받기
깃 다운 링크
git bash 실행
1) 유저 이름 설정하기
git config --global user.name "name"
git config --global user.email "email"
3) 정보 확인하기
git config --list
git init
git add .
git add file_name
git status
git commit -m "first commit"
-m 뒤에는 깃허브의 설명란에 해당함. 적절히 수정하여 사용하기
git remote add origin https:// ~ .git
origin 뒤에는 저장소 별 주소가 따로 있으므로 그것을 확인하기
git remote -v
git push origin master
origin 이후는 branch명을 입력하기
git add .
git add file_name
git commit -m "first commit"
git push origin master