Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- Git_명령어정리
- 자바스크립트
- 인덱스
- Git_정리
- java
- 인스턴스
- Linux
- MySQL
- SQL
- vb.net
- 배열
- git
- jsp
- CSS
- spring
- 아파치톰캣
- asp.net
- workbench
- Spring_오류정리
- JavaScript
- json
- github
- HTML
- 이클립스
- Spring_에러정리
- SQL_용어정리
- Linux_명령어정리
- 자바
- 다이어그램
- DML
Archives
- Today
- Total
데브마우스
[Git:명령어 정리] push 명령어 정리 본문
git push 명령어 정리
git push 명령어는 로컬 저장소의 파일을 원격 저장소로 업로드할 때 사용합니다.
처음 사용할 때는 git push -u origin [main | master]로 작성하며 2번째 부터는 git push로 작동합니다.
git push 명령어 형식은 아래와 같습니다.
git push [--all | --branches | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
[--repo=<repository>] [-f | --force] [-d | --delete] [--prune] [-q | --quiet] [-v | --verbose]
[-u | --set-upstream] [-o <string> | --push-option=<string>]
[--[no-]signed|--signed=(true|false|if-asked)]
[--force-with-lease[=<refname>[:<expect>]] [--force-if-includes]]
[--no-verify] [<repository> [<refspec>…]]
'Git > Git: 명령어 정리' 카테고리의 다른 글
| [Git:명령어정리] fetch 명령어 정리 (0) | 2024.01.15 |
|---|---|
| [Git:명령어정리] pull 명령어 정리 (0) | 2024.01.11 |
| [Git:명령어 정리] 작업 되돌리는 명령어 정리: restore, reset, revert (0) | 2024.01.10 |
| [Git:명령어 정리] commit 명령어 정리 (0) | 2024.01.09 |
| [Git:명령어 정리] diff 명령어 정리 (0) | 2024.01.09 |