1. git 초기화 git init 1-1. 사용자 등록 git config --global user.email "본인의 이메일" git config --global user.name "본인의 이름" *global 뒤를 생략하고 엔터를 입력하면 현재 본인의 이메일 혹은 이름을 볼 수 있다. 1-2. origin 이라는 이름으로 원격서버를 저장하겠다 라는 뜻. (원격저장소 이름 = origin) *origin 대신 다른 이름으로도 변경이 가능. git remote add origin https://github.com/~!@#!~#@.git Build software better, together GitHub is where people build software. More than 40 million pe..
git] 기초 명령어 모음
1. git 초기화 git init 1-1. 사용자 등록 git config --global user.email "본인의 이메일" git config --global user.name "본인의 이름" *global 뒤를 생략하고 엔터를 입력하면 현재 본인의 이메일 혹은 이름을 볼 수 있다. 1-2. origin 이라는 이름으로 원격서버를 저장하겠다 라는 뜻. (원격저장소 이름 = origin) *origin 대신 다른 이름으로도 변경이 가능. git remote add origin https://github.com/~!@#!~#@.git Build software better, together GitHub is where people build software. More than 40 million pe..
2020.01.23