일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- mssql
- ojdbc
- sqldeveloper
- install
- oracle
- Tomcat #SpringFramework
- mysql
- 스프링부트 #springboot #project #Intellij
- springboot #controller #jsp
- HATEOAS
- Database
- 웹개발
- SpringSecurity
- IntelliJ
- 환경변수
- apache
- 스프링부트
- Maven
- Developer
- RESTful
- tcping
- restapi
- SpringInitializer
- development
- Web
- undefined
- postman
- Oracle11g
- springboot
- 스프링시큐리티
Archives
- Today
- Total
여백에 도장 찍기
필수로 알아두어야 할 Git Commands 본문
개발자라면 알아두어야 할 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