일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- format
- Converting
- evaluation
- git
- GitLab
- PostgreSQL
- Flask
- enV
- Laravel
- list
- KAKAO
- Mac
- Python
- pytorch
- Package
- file
- DB
- numpy
- judge
- LLM
- docker
- AI
- Linux
- Container
- Paper
- Database
- Windows
- pandas
- TORCH
- CUDA
- Today
- Total
목록Git (7)
Daily Develope
의의 상용/배포단계의 브랜치들에 대한 버전 정보를 구분하기 위해 사용 branch와는 별도로 관리되므로, 태깅하려는 시점에 push 명령 (혹은 생성) 조회 목록 조회 git tag -l 목록 + 메시지 조회 git tag -n 상세 조회 git show v1.0.0생성 Method 1) Lightweight : commit 정보만 기록 (commit hash값, 작성자, 작성일) git tag v1.0.0 Method 2) Annotated : commit 정보와 tag 정보 기록 (commit 정보, tag 작성자/작성일/메시지) : GPG(GNU Privacy Guard) 서명 가능 git tag -a v1.0.0 -m 'first version' 특정 commit에 태깅 : tag ..
ㅇ 상태에 따른 파일 조회 # 상태 조회 git ls-files --{status} # [예1] 삭제파일 조회 git ls-files --deleted # [예2] 변경파일 조회 git ls-files --modified # [응용] 삭제된 파일만 추가 git add $(git ls-files --modified) ㅇ 변경사항(Changes)에 대해서만 추가 git add -u
HTTP Basic: Access deniedㅇ 증상 : git 접근 시 다음과 같은 오류 메시지 출력remote: HTTP Basic: Access deniedfatal: Authentication failed for 'https://...../gitlab/.../....git/' ㅇ 해결 : credential 정보 삭제sudo git config --system --unset credential.helper 'repo_name' does not appear to be a git repository ㅇ 증상 : git의 repository를 찾지 못 함'repo_name' does not appear to be a git repositoryfatal: Could not read from remote ..
예외항목 지정 예시 *.log # 확장자가 log인 파일 예외 !result.log # log 확장자가 예외처리 되었더라도 result.log 파일은 commit dirA/**/* # dirA 폴더 내부 모든 폴더 및 파일 예외적용시 주의사항 : 이미 push된 프로젝트에서는 .gitignore 관련파일을 캐쉬에서 삭제 후 commit 전체목록 갱신 git rm -r --cached . git commit -a -m "set .gitignore" git push -u origin master 특정파일만 예외처리 (예_ temp.log 파일 제외) git rm --cached temp.log echo temp.log >> .gitignore # git status 확인 시 temp.log 파일이 제외(de..