목차

Git

Git은 소스코드를 효율적으로 관리할 수 있게 해주는 형상 관리 도구입니다. 또한 여러 명의 개발자들이 같은 프로젝트를 작업할 때 협업을 쉽게 만들고, 작업한 프로그램의 버전을 관리해줍니다.

git 설치

brew install git

이메일 설정

git config --global user.email "YOUR_EMAIL"
git config --global user.name "YOUR_NAME"

remote change

git remote set-url origin https://github.com/user/repo2.git

문서