| 전체 설정 확인 |
git config --global -l |
| 저장소 url 변경 |
git remote set-url <name> <url> git remote set-url origin https://github.com/gutmate/gutmate.github.io.git |
| 사용자 이름 변경 |
git config --global user.name <user.name> |
| 사용자 이메일 변경 |
git config --global user.email <user.email> |
| 상태 확인 |
git status |
| 파일을 추적 대상에 등록 |
git add <file name> git add index.html |
| 파일을 추적 대상에 등록(전체) |
git add . |
| 커밋 |
git commit -m '<commit message>' git commit -m 'first commit' |
| 서버에 업로드 |
git push <repogitory> <branch> git push origin master |
| 서버에서 다운로드 |
git clone <repository> <directory> git clone https://github.com/gutmate/gutmate.github.io.git github-gutmate |
| 변경 이력 보기 |
git log |