git 명령어 모음
git bash에서 복사 : ctrl + insert 붙여넣기 : shift + insert git init git config user.name "" git config user.email "" git remote add origin http~ -remote repo 등록 : origin : 기원이라는 뜻으로 remote repo를 뜻함 아무거나 넣어도 되나 암묵적인 규칙 git add . git commit - commit message 창 출력하여 작성 (입력모드: i, 작성완료: esc -> :wq) git commit -m "" - message 바로 입력 git commit --amend - 가장 최신 commit을 수정해서 새로운 commit으로 만듦 git status git reset p..
git
2021. 6. 21. 13:28