git init
git add [filename]
❗️ 참고사항
git reset HEAD [file]
add하여 stage에 올라간 파일을 취소할 수 있다.![]()
git commit -m "message"
❗️ 참고사항
git commit -a
를 이용해 add 단계를 생략하고 add와 commit 동시에 하는 것이 가능.
저장소의 내용 가져오기
git pull origin [branch]
commit 된 내용을 올리기
git push origin [branch]
git clone [url]
❗️ 참고사항
git config credential.helper=store
를 이용하면 반영구적으로 인증 절차가 생략된다.
git status
git config list
git log