2학기 object 동아리 백엔드
- 해당 repository를 fork 하세요.
- 로컬에서 작업한 커밋을 fork한 repository에 push 하세요.
- Pull Request를 생성하여, 과제를 제출해주세요.
git config user.name "<Your name>"
git config user.email <Your email address>
git config --global --unset user.name "<Your name>"
git config --global --unset user.email <Your email address>
git config --global --list
git remote add origin <깃허브 주소>
add -> commit -> push 순서대로 진행해 주세요
git add <파일이름>
<파일 이름> 대신 .을 입력하면 해당 폴더 내의 모든 파일이 추가 됩니다
git commit -m “<메시지>”
git push -u origin <브렌치 이름>
git pull origin <브렌치 이름>