Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ksql
- 친절한 SQL 튜닝
- @Transactional Propagation
- 자바 ORM 표준 JPA 프로그래밍 정리
- #docker compose
- IntelliJ
- JPA
- @TransactionalEventListener
- intellij 핵심 단축키
- Linux
- 마이크로 서비스
- intellij 즐겨찾기
- Stream
- 백명석님
- 자바 ORM 표준 JPA 프로그래밍
- multipart테스트
- ksqldb
- git
- vue.js
- 리눅스
- aws
- java
- CompletableFuture
- 리팩토링 2판
- javascript case
- Spring Cloud Netflix
- 원격 브랜 삭제
- HandlerMethodArgumentResolver
- intellij favorites
- findTopBy
Archives
- Today
- Total
시그마 삽질==six 시그마
git branch/checkout 본문
1. branch
#show local branches
git branch
#show remote branches
git branch -r
#List all branches(include remote)
git branch -a
#Delete the specified branch
git branch -d <branch>
#Force delete the specified local branch
git branch -D <branch>
ex) git branch -D feature/test2
#Force delete the specified remote branch
git push <remote_name> --delete <branch_name>
ex) git push origin --delete feature/test2
#Rename the current branch to <branch>.
git branch -m <branch>
https://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-locally-and-remotely
2. checkout
#Switching Branches
git checkout <branchname>
#creates and checks out <new-branch>
#base:the current HEAD
# -b argument that acts as a convenience method which will create the new branch and immediately switch to it
git checkout -b <new-branch>
git checkout -b feature/yyy
feature라는 폴더속에 yyy 브랜치 생성됨
#creates and checks out <new-branch>
#base:existing-branch
git checkout -b <new-branch> <existing-branch>
#Checkout a Remote Branch
In modern versions of Git, you can then checkout the remote branch like a local branch.
remote에 있던 branch가 로컬에 새로 들어옴+checkout.
git fetch --all
git checkout <remotebranch>
ex) git checkout feature/test(o)
git checkout origin/feature/test (x)
source:
https://www.atlassian.com/git/tutorials/using-branches/git-checkout
'프로그래밍 > GIT' 카테고리의 다른 글
git repository 복사하기 (0) | 2020.08.12 |
---|---|
git 히스토리 초기화 (0) | 2020.08.10 |
현재 브랜치를 마스터로 만들기 (0) | 2020.03.06 |
이미 tracking된 원격 저장소에 .gitignore 적용 (0) | 2020.03.06 |
Git Reset/ Revert (0) | 2020.03.06 |
Comments