don't stop believing

git 기본 명령 본문

Tools/Git & GitLab

git 기본 명령

Tongchun 2018. 6. 11. 15:28




git config 설정

git config --global user.name "Sam Smith"

git config --global user.email sam@example.com


git 초기화

git init


git check out (local repository에 working copy를 만듭니다.)

git clone username@host:/path/to/repository

git clone https://github.com/ochococo/Design-Patterns-In-Swift.git


git에 파일 추가

git add <filename>

git add *


local repository에 commit하기

git commit -m "Commit message"


remote repository에 올리기

git push


git 업데이트

git pull



'Tools > Git & GitLab' 카테고리의 다른 글

git commit sh 만들어 사용하기  (0) 2018.10.17
ssh key 생성하고 적용하기  (1) 2017.12.26
Gitlab 프로젝트 만들고 사용해 보기  (0) 2017.11.09
[GitLab] Backup & Restore  (0) 2017.09.04
[GitLab] 도메인 변경  (0) 2017.09.04
Comments