<commit, push>
$git add .(전체 add)
$git commit -m [“commit 내용”]
$git push [remote name][branch name]
<수정된 코드 확인>
$git status
$git diff
<현재 branch 및 branch list 확인>
$git branch
<branch 만드는 커멘드>
$git branch [브랜치 이름]
<branch 활성화>
$ git checkout [브랜치 이름]
[참고]
<Git push 오류>
https://backstreet-programmer.tistory.com/112
https://parksb.github.io/article/28.html
<Git 오류>
https://hcnoh.github.io/blog-prev/git-basic-usage/
< Git ignore>