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
- IntelliJ
- web.xml
- Source
- grep
- 네트워크
- lsof
- GIT
- tomcat
- xargs
- import
- profile
- VirtualBox
- 단축키
- ssh
- plugin
- resource
- maVen
- bash
- port
- Quartz
- Windows 10
- vscode
- netsh
- context
- Eclipse
- 줄바꿈 문자
- find
- Windows
- Mac
- JavaScript
Archives
- Today
- Total
develog
[git] switch 본문
## 브랜치 생성
~ (master)$ git switch -c feature/01
Switched to a new branch 'feature/01'
~ (feature/01)$
## 브랜치로 전환
~ (feature/01)$ git switch master
M README.md
Switched to branch 'master'
## 브랜치 삭제
~ (master)$ git branch -d feature/01
Deleted branch feature/01 (was 56d37b2).
'Dev > git' 카테고리의 다른 글
[git] clone vs fork (0) | 2022.04.03 |
---|---|
[git] reset (0) | 2022.04.03 |
[git] revert (0) | 2022.04.03 |
[git] checkout commit (0) | 2022.04.01 |
[git] master >R> (0) | 2022.03.31 |
Comments