혼자 개발하다 보니 github를 사용할 일이 자주 없다. 그래서인지 자꾸 초기 셋업 방법을 까먹고 있어서 기록해둔다. 방법1. 커맨드 라인으로 새로운 레파지토리 생성하기echo "# DjangoBook" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/leejabba/DjangoBook.git git push -u origin master 방법2. 이미 생성 되어 있는 레파지토리에 푸시하기git remote add origin https://github.com/leejabba/DjangoBook.git git push -u origin master 참고로 ..
Diary/개발 생활
2017. 11. 21. 13:26