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
- java
- vb.net
- Git_명령어정리
- SQL_용어정리
- JavaScript
- asp.net
- Linux_명령어정리
- SQL
- 아파치톰캣
- 인덱스
- Spring_에러정리
- 인스턴스
- MySQL
- github
- 자바스크립트
- DML
- jsp
- 배열
- workbench
- 이클립스
- spring
- Spring_오류정리
- json
- HTML
- 다이어그램
- Linux
- CSS
- Git_정리
- 자바
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 |