Python 프로젝트 배포 가이드
Git 코드 관리 및 동기화
### Git 로컬 업로드
- 전역 설정
git config --global user.name "사용자"
git config --global user.email "이메일@도메인.com"
- 프로젝트 디렉토리 진입
- 초기화
git init
- 원격 주소 설정
git remote add origin https://gitlab.com/username/repository.git
...
5월 21일 08:05에 게시됨