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

잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
(git init 관련 링크 추가)
64번째 줄: 64번째 줄:
*[[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]]

2021년 6월 25일 (금) 21:59 판

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