git push : local repository의 내용을 remote repository에 보내기
git push -u origin master : local repository의 내용을 처음으로 remote repository에 올릴 때 사용한다.
git pull : remote repository의 내용을 local repository로 가져오기
git clone (Github에 있는 오픈소스의 주소) : Github에 있는 프로젝트를 local repository로 가져오기
git log : 커밋 히스토리 보기
[--pretty=oneline 옵션 : 커밋 하나당 한 줄 씩]
git diff : 두 커밋 사이의 변화
-------------------
git 명령어, 옵션 등이 긴 경우 git config로 aliasing할 수 있다. (Mysql, SELECT AS에서 열의 이름을 지정해주는 것과 유사하다.)
git config alias.ht 'log --pretty=oneline' : git log --pretty=oneline을 다 쓰기 번거로우므로 git config를 이용해 git ht로 aliasing해준다.
'개발 > Git' 카테고리의 다른 글
git stash (0) | 2022.09.21 |
---|---|
git merge와 git rebase (0) | 2022.09.21 |
git reset 주의할점 (0) | 2022.08.30 |
Git 기초 명령어 (0) | 2022.03.09 |