일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 기타 연주
- 핑거스타일
- C#
- LIST
- Linux
- OpenCV
- ubuntu
- 명령어
- pandas
- 채보
- JSON
- error
- SSH
- pip
- VS Code
- C++
- label
- Numpy
- 프로그래머스
- Docker
- Visual Studio
- windows forms
- mysql
- pytorch
- YOLO
- Selenium
- 오류
- Python
- paramiko
- C
- Today
- Total
목록git (3)
기계는 거짓말하지 않는다
git clone 명령어로 특정 브랜치만 클론하고 싶을 경우 1) git clone -b [branch_name] [remote-repository-url] git clone --branch [branch_name] [remote-repository-url] # ex) git clone -b sdk/8.1 https://github.com/FFmpeg/nv-codec-headers.git 2) git clone -b [branch_name] --single-branch [remote-repository-url] git clone --branch [branch_name] --single-branch [remote-repository-url] # ex) git clone -b sdk/8.1 -single-b..
Updates were rejected because the remote contains work that you do git pull 후 다시 git push 과정을 실행한다.
Command 창에 입력 생성 ~ 초기 설정 Command Description git init 저장소 생성, 초기화 (.git 디렉터리 생성) git remote add origin URL URL에 입력된 원격 저장소 연결 ex) git remote add origin https://github.com/... git config --global user.email "EMAIL" EMAIL에 입력된 이메일을 사용자 이메일로 설정 ex) git config --global user.email "user@gmail.com" git remote -v 연결된 저장소 확인 branch 관련 Command Description branch 조회 git branch 현재 로컬 브랜치 확인 git branch -r 원..