git init
git add .
git commit -m "first commit"
git remote add origin [git_repository_주소]
: git push origin master
git clone [리퍼지토리 주소] ([폴더이름])
git add *
git commit -m "contributor\'s first commit"
git checkout -b [브랜치 이름]
: 본인의 작업을 올릴 브랜치를 생성합니다.git push origin [브랜치 이름]
compare & pull request
를 누릅니다.merge pull request
git checkout master
git add *
git commit -m "내 로컬작업 + 브랜치 작업이 합쳐진 최종본"
git pull origin master
git commit -am ""
git push origin master