일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트
- 리액트 훅
- 장고
- vanillaJS
- useState
- React JS
- codesandbox
- Java
- 데이터모델링과마이닝
- react firebase
- design pattern
- JavaScript
- 디자인 패턴
- 자바 공부
- 자바스크립트
- useEffect
- 프로그래머스 완전탐색
- 컴퓨터 네트워크
- 코딩테스트 고득점 Kit 완전탐색
- react
- 코틀린
- NextJS
- 자바
- react hook
- 코딩테스트 고득점 Kit
- websocket
- 프로그래머스
- 프로그래머스 자바
- 프로그래밍 언어론
- 백준
Archives
- Today
- Total
기록하는 개발자
[Git] git의 branch 관련 명령어(생성, 이동, push etc) 본문
728x90
Branch 생성
git branch 브랜치명
Branch 이동
※ git 2.23버전 부터 git 의 checkout이 switch와 restore로 대체되었다.
checkout: Switch branches or restore working tree files
switch: Switch branches
restore: Restore working tree files
Git 변경사항 복원
git restore
Branch 생성 및 변경(이동)
git switch -c 브랜치명
Branch 삭제
git branch -d 브랜치명
Branch 강제 삭제
git branch -D 브랜치명
Branch 최초 push
git push --set-upstream origin 브랜치명
특정 브랜치로부터 pull
git pull origin 브랜치명
최초에 한 번 위와 같이 push 하고 나면 이후에는 아래와 같이 push 가능
git push -u origin 브랜치명
728x90
'Git' 카테고리의 다른 글
[Git] AWS+Github Action으로 React 자동 배포하기(with yarn-berry) (0) | 2023.06.05 |
---|---|
[Baekjoon, Git] 1년 간의 '1일 1커밋, 1일 1백준' (0) | 2022.08.13 |
[Baekjoon, Git] 1일 1커밋, 1일 1백준 도전기의 중반부를 달리는 나 (0) | 2022.02.17 |
[Git] 레포지토리에 빈 폴더 push (0) | 2021.03.28 |
[Git] git push 실행 시 Authentication Failed (0) | 2021.03.28 |