$ git remote add origin [github 레포지 주소]
$ git remote add origin [branch 이름] #없으면 생성됨
$ git remote -v
$ git push -u origin master
$ git push
$ git push origin master
$ git pull
$ git pull origin master
$ ssh-keygen
첫번째 커밋이 아니라면 풀 먼저하기
$ git remote remove origin
$ git clone [원격 저장소 주소]
가져온 branch 내용은 origin/[브랜치] 로 저장됨
$ git fetch
$ git diff test origin/test # 브랜치 이름이 test일 경우 예시
git
$ git checkout FETCH_HEAD
$ git merge FETCH_HEAD
$ git checkout -b [브랜치명]
$ git push origin [브랜치명]
$ git remote remove origin
$ cat [파일명.확장자명]
$ cd init [디렉토리명]
$ git reset [커밋메시지][커밋해시]
$ git branch [브랜치명] -d
$ git stash
$ git stash save
$ git stash list
$ git stash apply
$ git stash apply stash@{1}
$ git stash drop
$ git stash drop stash@{1}
$ git stash pop
ex) git log --pretty=oneline을
->git history 라는 별명으로 바꾸기.
git config alias.[별명] '원하는 명령어'
git config alias.history 'log --pretty=oneline'
$ git tag [태그이름][커밋 ID]
$ git tag Version_2 86a99 # tag 달기
$ git tag #tag 조회하기
$ git show Version_2<>
[Git] git 명령어 모음, 총 정리 (gitbash, terminal)
깃허브를 명령어만으로 배워서 업로드 시켜야 하는 것이 어려웠다.
처음 깃허브를 배운다면 GUI가 아니라 명령어를 통해서 익혀야 한다는 것은 이미 알고 있다.
이번 수업은 CSS를 배웠지만 마저 끝내지 못했던 깃허브 명령어를 마저 끝내야해서 이렇게 마무리 짓기로 했다.