"Git init"의 두 판 사이의 차이

(새 문서: ==개요== ;git init * 빈 Git 저장소를 생성하거나 초기화하는 명령어 <source lang='cli'> testuser@zetawiki:~$ mkdir workspace testuser@zetawiki:~$ cd workspace test...)
 
10번째 줄: 10번째 줄:
testuser@zetawiki:~/workspace/hello$ git init
testuser@zetawiki:~/workspace/hello$ git init
Initialized empty Git repository in /home/testuser/workspace/hello/.git/
Initialized empty Git repository in /home/testuser/workspace/hello/.git/
</source>
<source lang='cli'>
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
</source>
</source>



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 }}