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
- 윤성우의 열혈 자료구조
- Serialization
- insertion sort
- list 컬렉션
- 이것이 자바다
- s
- 메모리구조
- 윤성우 열혈자료구조
- coding test
- stream
- 알기쉬운 알고리즘
- buffer
- JSON
- 이스케이프 문자
- R
- Algorithm
- Graph
- datastructure
- 혼자 공부하는 C언어
- Selection Sorting
- C 언어 코딩 도장
- Stack
- C programming
Archives
- Today
- Total
Engineering Note
git local과 remote 브랜치 default 연결 설정하기 본문
git push나 pull 할때 remote repository의 branch를 매번 적어줘야 하는 불편함을 해결하기 위해 default로 remote와 local branch 연결하는 방법
git branch --set-upstream-to=origin/<remote branch> <local branch>
remote repository origin의 특정 branch와 local branch 연결해서 push pull때 마다 branch 설정 안해도 되게 연결하기
'Git' 카테고리의 다른 글
git pull 에러 (0) | 2021.10.22 |
---|---|
git log --oneline (0) | 2021.10.19 |
Git의 기본 개념 (0) | 2021.06.27 |
Git 저장소 생성 (0) | 2021.06.27 |
VScode에서 Git bash 설정하기 (0) | 2021.06.23 |
Comments