git init
git init
으로 초기화시키면 해당 directory를 local git storage로 등록.git clone
git add
git add
뒤에 stage에 올릴 파일 이름을 입력git add --all
혹은 git add .
를 입력하면 status에 나온 변경된 내용을 모두 stage에 올려준다.git commit -m [commit message]
git push
git branch [새로운 브랜치명]
git branch
만들어진 branch를 확인할 때의 명령어git checkout [브랜치명]
git remote
git remote -v
: 현재 local repository와 연결된 저장소 URL을 확인 가능