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

1번째 줄: 1번째 줄:
==개요==
==개요==
;git init
;git init
* 빈 Git 저장소를 생성하거나 초기화하는 명령어
* 빈 Git 저장소를 생성하거나 기존 저장소를 초기화하는 명령어
   
   
<source lang='cli'>
<source lang='cli'>
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$ ll
total 12
drwxrwxr-x 3 testuser testuser 4096 Feb 10 16:46 ./
drwxrwxr-x 3 testuser testuser 4096 Feb 10 16:46 ../
drwxrwxr-x 7 testuser testuser 4096 Feb 10 16:46 .git/
</source>
</source>
<source lang='cli'>
<source lang='cli'>

2016년 2월 10일 (수) 16:49 판

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$ ll
total 12
drwxrwxr-x 3 testuser testuser 4096 Feb 10 16:46 ./
drwxrwxr-x 3 testuser testuser 4096 Feb 10 16:46 ../
drwxrwxr-x 7 testuser testuser 4096 Feb 10 16:46 .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 }}