git init
git remote add origin `레포지토리URL`
git add .
git commit -m "작성할 메세지"
git push origin `브랜치명`
git pull origin `브랜치명`
git fetch origin `브랜치명`
git mergh `병합 하고싶은 브랜치`
git switch -c `브랜치명`
git branch
git checkout `변경할 브랜치명`
git checkout -b `브랜치명`
git log