| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- KAKAO
- Flask
- LLM
- numpy
- Windows
- format
- git
- Package
- Laravel
- docker
- Database
- DB
- TORCH
- pandas
- 책갈피
- PostgreSQL
- list
- judge
- pytorch
- Mac
- Converting
- file
- GitLab
- AI
- Paper
- Container
- ubuntu
- evaluation
- Python
- Linux
Archives
- Today
- Total
목록commit (1)
Daily Develope
[Git] 기본 명령어 (init / commit / stash)
목차- 신규 생성/등록- Commit- Stash (임시 저장)신규 생성/등록git initgit 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 업데이트 Commitㅇ 전체 파일 일괄적으로 add 및 commitgit commit -a -m "{message}" ㅇ Add된 파일 취소git restore {file_name} ㅇ Commit 취소git reset HEAD {ta..
Git
2022. 1. 7. 19:16