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

3번째 줄: 3번째 줄:
* 작업 트리 상태를 보여주는 git 명령어
* 작업 트리 상태를 보여주는 git 명령어


==실행예시==
==실습==
<source lang='cli'>
<source lang='cli'>
testuser@zetawiki:~/workspace/hello$ git init
testuser@zetawiki:~/workspace/hello$ git init
15번째 줄: 15번째 줄:


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>
* greet.txt 파일 작성 후 확인
<source lang='cli'>
testuser@zetawiki:~/workspace/hello$ echo 'hello world' > greet.txt
testuser@zetawiki:~/workspace/hello$ git status
On branch master
Initial commit
Untracked files:
  (use "git add <file>..." to include in what will be committed)
greet.txt
nothing added to commit but untracked files present (use "git add" to track)
</source>
</source>



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

1 개요

git status
  • 작업 트리 상태를 보여주는 git 명령어

2 실습

testuser@zetawiki:~/workspace/hello$ git init
Initialized empty Git repository in /home/testuser/workspace/hello/.git/
testuser@zetawiki:~/workspace/hello$ git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)
  • greet.txt 파일 작성 후 확인
testuser@zetawiki:~/workspace/hello$ echo 'hello world' > greet.txt
testuser@zetawiki:~/workspace/hello$ git status
On branch master

Initial commit

Untracked files:
  (use "git add <file>..." to include in what will be committed)

	greet.txt

nothing added to commit but untracked files present (use "git add" to track)

3 같이 보기

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