반드시 작업전에 pull을 해야한다!
git init
# 특정 파일 추가
git add user.js
# 현재 폴더를 대상으로 추가
git add .
# add 취소
git reset user.js
# 커밋
git commit -m "Initial commit"
# 현재 branch 확인
git branch
# branch 생성
git branch like_feature
# branch 전환
git checkout like_feature
# 원하는 branch로 이동
git checkout master
git merge like_feature
# merge한 branch 확인 후 삭제
git branch --merged
git branch -d like_feature
lobal user.name "xoo0608"
git config --global user.email xoo0608@gmail.com
# 프로젝트마다 다르도록
git config user.name "ChaneHaDa"
git config user.email chane.ha.da@gmail.com
# 원격 저장소 보기
git remote -v
# 원격 저장소 연결
git remote add origin https://gitlab.com/group/project
# 원격 저장소 확인
git remote
# 원격 저장소 복제
git clone https://gitlab.com/alwys/myproject.git
# Pull: 원격 저장소에서 데이터 가져오기 + 병합(Merge)
git pull origin <branch name>
git checkout -t origin/dev # 원격 브런치 가져오기
git checkout -f -t origin/dev
git checkout -b -t origin/dev # 이름바꾸어서 가져오기
# Fetch: 원격 저장소에서 데이터 가져오기 / 작업 후 병합
git fetch
# 저장소 발행 / Merge부터 해야함
git push origin master