[Git] commit, push, merge
commit & push $ git commit -am "커밋 메시지 내용" //Staged 상태로 commit 생성 $ git status //파일 상태 확인 $ git log //commit 내역 확인 $ git add //파일 추적, staged상태 $ git push - u origin master //commit을 원격저장소로부터 업데이트를 받은 후 push 원격 저장소에 업로드 $ git remote add origin //원격으로 push ❗ commit error hint: after resolving the conflicts, mark the corrected paths hint: with 'git add ' or 'git rm ' hint: and commit the result wit..
Operating System (OS) & Network & VCS/Git
2022. 10. 7. 10:59