일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- Flask
- list
- Converting
- numpy
- LLM
- docker
- DB
- TORCH
- git
- pytorch
- Container
- Package
- CUDA
- AI
- Mac
- Paper
- KAKAO
- Database
- pandas
- file
- evaluation
- judge
- GitLab
- enV
- Laravel
- Windows
- format
- Linux
- PostgreSQL
- Today
- Total
목록git (6)
Daily Develope
ㅇ 목차 - 신규 생성/등록 - Add / Commit - Merge (합병) 신규 생성/등록 git init git add {file}# 업데이트할 파일 추가 git commit -m "{message}"# 업데이트시 기록할 메시지 등록 git remote add {remote_name} {remote_url}# remote_name으로 원격 저장소 주소 기록 git push -u {remote_name} {branch_name}# remote_name의 branch_name 업데이트 Add / Commit ㅇ 전체 파일 일괄적으로 add 및 commit git commit -a -m "{message}" ㅇ Add된 파일 취소 git restore {file_name} ㅇ Commit 취소 git r..
조회 브랜치 리스트 조회 git branch -v # 현재 브랜치 정보 출력 git branch -l # Local 브랜치 정보 출력 git branch -r # Remote Storage 브랜치 정보 출력 git branch -a # 전체 (Local + Remote Storage) 브랜치 정보 출력 브랜치 구조 확인 git log --graph # 그래프로 출력 (전체 정보는 --all 옵션 추가) git log --oneline --decorate # 간략히 출력 git log --all --decorate --oenline --graph # adog !!생성 브랜치 생성 git branch {branch_name} 생성 및 해당 브랜치로 변경 git checkout -b {branch_name}삭..