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
- Spring_오류정리
- json
- SQL
- Spring_에러정리
- Linux
- MySQL
- workbench
- git
- DML
- Git_정리
- SQL_용어정리
- 배열
- jsp
- 이클립스
- JavaScript
- 자바스크립트
- HTML
- 아파치톰캣
- asp.net
- 자바
- 인스턴스
- Git_명령어정리
- vb.net
- Linux_명령어정리
- 다이어그램
- github
- spring
- 인덱스
- java
- CSS
Archives
- Today
- Total
데브마우스
[Git:명령어 정리] init 명령어 정리 본문
git init 명령어 정리
git init 명령어는 현재 디렉터리를 git 저장소(repository)로 초기화 하거나 이미 존재하는 디렉터리를 git 저장소(repository)로 만듭니다.
git init 옵션은 아래 코드와 같습니다.
git init [-q | --quiet] [--bare] [--template=<template-directory>]
[--separate-git-dir <git-dir>] [--object-format=<format>]
[-b <branch-name> | --initial-branch=<branch-name>]
[--shared[=<permissions>]] [<directory>]
참고 자료
Git/mingw64/share/doc/git-doc/git-init.html
'Git > Git: 명령어 정리' 카테고리의 다른 글
[Git:명령어 정리] 작업 되돌리는 명령어 정리: restore, reset, revert (0) | 2024.01.10 |
---|---|
[Git:명령어 정리] commit 명령어 정리 (0) | 2024.01.09 |
[Git:명령어 정리] diff 명령어 정리 (0) | 2024.01.09 |
[Git:명령어 정리] log 명령어 정리 (0) | 2024.01.09 |
[Git:명령어 정리] add 명령어 정리 (0) | 2024.01.09 |