본문 바로가기
Engineering WIKI/Version Control

10분만에 배우는 Git

by wonos 2018. 9. 10.

git 사용방법

– 커밋할 폴더 오른쪽 버튼 눌러스 git-bash 선택하면 콘솔창 뜬다

– git init

– git status

git remote add origin https://github.com/choiwonho/algorithm.git     (커밋할 저장소 원격지)

– git status(아직 커밋되지 않은 파일이 빨간색으로 표시)

– git add . 폴더내 모든 파일 추가

– git config –global user.email “guriguri1576@naver.com” (처음 커밋이므로 이메일 주소 입력)

– git config –global user.name “bingbingpa” (ID 입력)

– git commit -m ‘tetete’ (커밋에 대한 주석)

– git push -u origin master  (커밋!)

– 파일 수정 후

– git add .

– git commit -m ‘주석내용’

– git push

– git checkout -b beta(브런치명)

– git branch(현재 branch확인)

– 파일 작성 후

– git add .

– git commit -m ‘주석내용’

– git push -u origin beta(브런치명)

– git merge beta(merge할 branch명)

– git push

'Engineering WIKI > Version Control' 카테고리의 다른 글

Git - 포크한 깃허브 저장소를 원본 저장소와 동기화 하기  (0) 2021.04.26
SVN - Repository 생성  (0) 2021.04.15
SVN - 체크아웃 프로젝트 Maven 설정  (0) 2021.01.17
Eclipse SVN 제외  (0) 2021.01.17
Git 과 Github (11)  (0) 2018.09.10
Git 과 Github (10)  (0) 2018.09.10
Git 과 Github (9)  (0) 2018.09.09
Git 과 Github (8)  (0) 2018.09.09