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 |
Tags
- IntelliJ
- lsof
- 단축키
- VirtualBox
- JavaScript
- profile
- import
- context
- 네트워크
- resource
- Source
- maVen
- find
- bash
- web.xml
- Quartz
- vscode
- port
- xargs
- Eclipse
- tomcat
- grep
- Windows 10
- plugin
- ssh
- ora2pg
- Mac
- Windows
- netsh
- GIT
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