NAME
git init
- 빈 Git 저장소를 생성하거나 기존 저장소를 다시 초기화합니다.
=> 현재 디렉토리를 새로운 Git 저장소로 설정
SYNOPSIS
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 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]
DESCRIPTION
이 명령은 빈 Git 저장소(기본적으로 개체, refs/heads, refs/tag 및 템플릿 파일의 하위 디렉토리가 있는 .git 디렉토리)를 생성합니다.
커밋이 없는 초기 분기가 생성됩니다.
기존 리포지토리에서 git init을 실행하는 것은 안전합니다.
그것은 이미 있는 것들을 덮어쓰지 않을 것입니다.
git init를 다시해도 이미 지정된 저장소이기 때문에 저장소가 오염되지않는 것을 확인할 수 있다.
참조:
반응형
'git(분산 버전 관리 시스템)' 카테고리의 다른 글
[git] git commit (0) | 2021.03.06 |
---|---|
[git] git add와 staging Area (0) | 2021.03.06 |
[git] 파일 상태 정리 (0) | 2021.03.05 |
[git] git config (0) | 2021.03.05 |
[git] Git? Github? (0) | 2021.03.05 |