[Git] GitLab 사용법 / Sourcetree 설치
* PC에 GIT 설치 * GitLab 사이트에서 새로운 프로젝트 생성 * SSH 생성 - 터미널을 열고 ssh-keygen 입력 # ssh-keygen -t rsa - .ssh\ id_rsa.pub 복사하여, gitlab사이트의 SSH Keys에 붙여넣는다 ( 최초 1회만 실행 ) * Git CMD 창에서 아래 명령어 실행 ▶ Git global setup git config --global user.name "유저명" git config --global user.email "이메일 주소" git config --list 회원가입시, 유저명, 이메일 주소 입력. ▶ Create a new repository git clone git@gitlab.com:[유저명]/[프로젝트명].git cd [생성된 프로..
2020.10.22