여백에 도장 찍기

필수로 알아두어야 할 Git Commands 본문

VCS/Git

필수로 알아두어야 할 Git Commands

Linzyseo 2019. 7. 12. 17:41

개발자라면 알아두어야 할 Git Command에 대해 정리해보자. 

 

○ Git Version & Status Check

$ git --version
git version 2.22.0.windows.1

$ git status 

 

○ Git 시작하기 

$ git init 

$ git clone 'git-repository-name'

$ git add
$ git commit -m 'commit-message' 
$ git push master origin 




$ git diff

$ git merge

$ git rebase

...

 

○ Git Branch 관련 

# branch List 
$ git branch 

# Create branch
$ git branch 'new-branch-name'

# Change branch  
$ git checkout 'branch-name'

 

'VCS > Git ' 카테고리의 다른 글

[IntelliJ] GitHub에 Project 올리기  (0) 2019.07.12
Git Submodule  (0) 2019.03.06
git - ssl connection error 해결  (0) 2019.02.22
Git SSL Connection  (0) 2019.01.21
Git - Private Token 이용하여 파일 전송  (0) 2018.12.06
Comments