반응형
안녕하세요~ 27년차 진로탐색꾼 조녁입니다!!
오늘은 정말 간단하지만 자주 안쓰면 자꾸 사소하게 까먹어서 기록 남겨놓으려고 합니다! (a.k.a 미세먼지 팁)
1. git
- Make a git branch
#check my branch
git branch
#make a branch
# * You can't create branch in places where there's no commit
git branch [branch name]
- Clone a specific branch from git-hub
git clone -b {branch_name} --single-branch {저장소 URL}
ex) git clone -b LJH --single-branch https://github.com/jonhyuk0922/~~
- Pull or Push a specific branch to git-hub
#pull a specific branch
git pull origin [branch name]
#push a specific branch
git push origin [branch name]
참고자료
깃 입문 자료 : https://backlog.com/git-tutorial/kr/stepup/stepup2_2.html
특정 브런치 클론 : https://www.slipp.net/questions/577
반응형
'프로그래밍 공부 > Git & Terminal' 카테고리의 다른 글
[Git-hub 오류해결] remote : Write access to repository not granted , git the requested URL returend error : 403 해결방법(CLI Token 연결, Organization) (0) | 2022.08.13 |
---|---|
[UNIX] 커맨드를 자유자재로 (0) | 2021.05.26 |
[UNIX] 디렉토리와 파일 (0) | 2021.05.25 |
[UNIX] CLI환경과 UNIX (0) | 2021.05.22 |
[Git-hub] 잔디가 심기지 않는 이유 (0) | 2021.05.19 |