[Gitlab] 깃랩 로컬 초기 환경설정
■ 작업 순서 1. 로컬에서 Gitlab 레퍼지토리를 생성하고자 하는 폴더로 이동 후 명령어 실행 git init 2. Gitlab 계정 설정 2.1 Gitlab 이름 설정 ex) git config --global user.name "Hyunmin" git config --global user.name [깃렙 계정 이름] 2.2 Gitlab 이메일 설정 ex) git config --global user.email "hyumin@example.com" git config --global user.email [깃랩 계정 이메일] 3. 원격(Remote) 생성하기 ex) git remote add origin http://example.com/test/test.git git remote add origin..
2021.04.16