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

잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
4번째 줄: 4번째 줄:


==실습==
==실습==
* 사전작업: [[git init]] 실습
* 사전작업: [[git init]] 실습
<source lang='cli'>
<source lang='console'>
root@zetawiki:~/workspace/hello# git status
root@zetawiki:~/workspace/hello# git status
On branch master
On branch master
15번째 줄: 15번째 줄:
:→ git init 직후이므로 아무 것도 없음
:→ git init 직후이므로 아무 것도 없음
* greet.txt 파일 작성 후 확인
* greet.txt 파일 작성 후 확인
<source lang='cli'>
<source lang='console'>
root@zetawiki:~/workspace/hello# echo 'hello world' > greet.txt
root@zetawiki:~/workspace/hello# echo 'hello world' > greet.txt
root@zetawiki:~/workspace/hello# git status
root@zetawiki:~/workspace/hello# git status
31번째 줄: 31번째 줄:
:→ greet.txt는 못보던 녀석인데...
:→ greet.txt는 못보던 녀석인데...
* greet.txt를 git에 추가 후 확인
* greet.txt를 git에 추가 후 확인
<source lang='cli'>
<source lang='console'>
root@zetawiki:~/workspace/hello# git add greet.txt
root@zetawiki:~/workspace/hello# git add greet.txt
root@zetawiki:~/workspace/hello# git status
root@zetawiki:~/workspace/hello# git status

2016년 3월 29일 (화) 10:29 기준 최신판

1 개요[ | ]

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

2 실습[ | ]

root@zetawiki:~/workspace/hello# git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)
→ git init 직후이므로 아무 것도 없음
  • greet.txt 파일 작성 후 확인
root@zetawiki:~/workspace/hello# echo 'hello world' > greet.txt
root@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)
→ greet.txt는 못보던 녀석인데...
  • greet.txt를 git에 추가 후 확인
root@zetawiki:~/workspace/hello# git add greet.txt
root@zetawiki:~/workspace/hello# git status
On branch master

Initial commit

Changes to be committed:
  (use "git rm --cached <file>..." to unstage)

	new file:   greet.txt

3 같이 보기[ | ]

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