일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql
- OpenCV
- 채보
- 핑거스타일
- 프로그래머스
- JSON
- 기타 연주
- Docker
- VS Code
- 명령어
- windows forms
- pandas
- label
- Linux
- LIST
- pytorch
- C++
- Selenium
- 오류
- Numpy
- pip
- ubuntu
- error
- C
- C#
- SSH
- paramiko
- Python
- Visual Studio
- YOLO
- Today
- Total
목록Git (6)
기계는 거짓말하지 않는다
error: Pulling is not possible because you have unmerged files. git pull을 사용할 경우 위와 같은 에러 메시지를 보는 경우가 있다. git commit -am "commit message" 위 명령어를 사용하여 해결할 수 있다.
git commit 기록을 보려면 git log 명령어를 사용한다. $ git log commit (HEAD -> main, origin/main) Merge: Author: Date: 위와 같이 커밋을 수행한 Author, 날짜(Date), 커밋 메시지, 커밋 해시 값을 볼 수 있다. q를 입력하면 빠져나올 수 있다. git log -n 3 과같이 입력하면 최근 3개 기록을 확인할 수 있다. --stat 옵션을 사용하면 각 commit의 통계 정보를 볼 수 있다. (n file changed, n insertions(+)) git 파일 상태를 확인하려면 git status 명령어를 사용한다. On branch master Your branch is up-to-date with 'origin/master..
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..
git add 후 이러한 오류를 보는 경우가 있다. hint에 주어진 명령어 대로 처리해서 되는 경우도 있지만 안될 수 있다. 원인은 git add 에 포함된 다른 하위 디렉터리에 .git 폴더가 또 있는 경우이다. 다른 하위 디렉터리의 .git 폴더를 제거 후 명령어를 다시 실행한다.
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 원..