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

 
(사용자 3명의 중간 판 9개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
{{소문자}}
;git init
;git init
* 빈 Git 저장소를 생성하거나 기존 저장소를 초기화하는 명령어
* 빈 Git 저장소를 생성하거나 기존 저장소를 초기화하는 명령어
 
<source lang='cli'>
==실습==
testuser@zetawiki:~$ mkdir -p workspace/hello
<syntaxhighlight lang='console'>
testuser@zetawiki:~$ cd workspace/hello/
root@zetawiki:~# mkdir -p workspace/hello
testuser@zetawiki:~/workspace/hello$ git init
root@zetawiki:~# cd workspace/hello/
Initialized empty Git repository in /home/testuser/workspace/hello/.git/
root@zetawiki:~/workspace/hello# git init
</source>
Initialized empty Git repository in /root/workspace/hello/.git/
<source lang='cli'>
</syntaxhighlight>
testuser@zetawiki:~/workspace/hello$ tree -aF
 
==확인==
<syntaxhighlight lang='console'>
root@zetawiki:~/workspace/hello# tree -aF
.
.
└── .git/
└── .git/
37번째 줄: 41번째 줄:


10 directories, 13 files
10 directories, 13 files
</source>
</syntaxhighlight>
:→ 맨뒤에 /가 붙은 것은 폴더, 그렇지 않은 것은 파일
:→ 맨뒤에 /가 붙은 것은 폴더, 그렇지 않은 것은 파일
<source lang='cli'>
<syntaxhighlight lang='console'>
testuser@zetawiki:~/workspace/hello$ git status
root@zetawiki:~/workspace/hello# git status
On branch master
On branch master


46번째 줄: 50번째 줄:


nothing to commit (create/copy files and use "git add" to track)
nothing to commit (create/copy files and use "git add" to track)
</source>
 
<source lang='cli'>
</syntaxhighlight>
testuser@zetawiki:~/workspace/hello# git show
<syntaxhighlight lang='console'>
root@zetawiki:~/workspace/hello# git show
fatal: bad default revision 'HEAD'
fatal: bad default revision 'HEAD'
</source>
root@zetawiki:~/workspace/hello# git log
<source lang='cli'>
testuser@zetawiki:~/workspace/hello# git log
fatal: bad default revision 'HEAD'
fatal: bad default revision 'HEAD'
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[git config]]
*[[git status]]
*[[git status]]
*[[git add]]
*[[git add]]
*[[git commit]]
*[[git commit]]
*[[git]]
*[[Git 명령어]]
* [https://git-scm.com/docs/git-init Git - git-init Documentation]
* [https://www.lainyzine.com/ko/article/git-init-how-to-initialize-git-repository/ git init 사용법: Git 저장소를 생성(초기화)하는 방법]


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

2022년 3월 7일 (월) 03:09 기준 최신판

1 개요[ | ]

git init
  • 빈 Git 저장소를 생성하거나 기존 저장소를 초기화하는 명령어

2 실습[ | ]

root@zetawiki:~# mkdir -p workspace/hello
root@zetawiki:~# cd workspace/hello/
root@zetawiki:~/workspace/hello# git init
Initialized empty Git repository in /root/workspace/hello/.git/

3 확인[ | ]

root@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
→ 맨뒤에 /가 붙은 것은 폴더, 그렇지 않은 것은 파일
root@zetawiki:~/workspace/hello# git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)
root@zetawiki:~/workspace/hello# git show
fatal: bad default revision 'HEAD'
root@zetawiki:~/workspace/hello# git log
fatal: bad default revision 'HEAD'

4 같이 보기[ | ]

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