Git init

Jmnote (토론 | 기여)님의 2016년 2월 10일 (수) 16:48 판 (→‎개요)

1 개요

git init
  • 빈 Git 저장소를 생성하거나 초기화하는 명령어
testuser@zetawiki:~$ mkdir workspace
testuser@zetawiki:~$ cd workspace
testuser@zetawiki:~/workspace$ mkdir hello
testuser@zetawiki:~/workspace$ cd hello
testuser@zetawiki:~/workspace/hello$ git init
Initialized empty Git repository in /home/testuser/workspace/hello/.git/
testuser@zetawiki:~/workspace/hello$ tree .git
.git
├── branches
├── config
├── description
├── HEAD
├── hooks
│   ├── applypatch-msg.sample
│   ├── commit-msg.sample
│   ├── post-update.sample
│   ├── pre-applypatch.sample
│   ├── pre-commit.sample
│   ├── prepare-commit-msg.sample
│   ├── pre-push.sample
│   ├── pre-rebase.sample
│   └── update.sample
├── info
│   └── exclude
├── objects
│   ├── info
│   └── pack
└── refs
    ├── heads
    └── tags

9 directories, 13 files

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}