컴퓨터 메모장에 저장 해놓고 쓰고 있는 정말 기초적이고 필요한 git code를 블로그에도 코드로 남겨 놓는다.
git code는 bold체
<염두할 것>
- local 파일 열어놓고 하기
- 이해 안될때 log랑 그래프 띄워보기
- git log
- git log --oneline
- git graph
- q
<branch 만들기 / checkout 하기>
branch 만들고 branch로 checkout 함 (branch명 yejin)
-> git branch yejin
-> git checkout yejin
<git add 와 commit>
파일 수정하고 다시 commit 하기
-> git add --all
-> git add <특정 파일>
-> git commit -m "yejin branch" (메세지 넣음)
<branch에서 수정 후에 master로 merge할 때>
master로 다시 체크아웃 - branch merge함
-> git checkout master
-> git merge yejin
<push 하기>
master가 변하지 않고 branch와 동일한 위치일 때 merge했으므로 그래프상
branch가 뻗어져 나온 것 안보임.
-> git push origin master (master로 merge했음으로 master만 push)
-> git push origin yejin 해도됨 -> git 홈페이지에 로그 남음
2020.05.03 기준 작성
반응형
'🔨 Trial and Error Log' 카테고리의 다른 글
[git] .gitignore 생성 (1) | 2020.09.22 |
---|---|
[mac os 환경구축] Anaconda 환경구축 (2020.09기준) (2) | 2020.09.02 |
[jupyter notebook]jupyter notebook 을 pdf로 변환 (jupyternotebook to pdf export) (6) | 2020.06.12 |
[ DeepVO ] Window와 Anaconda에서 torchvision (0) | 2020.05.05 |
[ Colab ] Colab 런타임을 안 끊기게 하는 코드 (1) | 2020.05.03 |