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

51번째 줄: 51번째 줄:


==같이 보기==
==같이 보기==
*[[git status]]
*[[git]]
*[[git]]


[[분류: git]]
[[분류: git]]

2016년 2월 10일 (수) 17:06 판

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 -aF
.
└── .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/

10 directories, 13 files
→ 맨뒤에 /가 붙은 것은 폴더, 그렇지 않은 것은 파일
testuser@zetawiki:~/workspace/hello$ git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)

2 같이 보기

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