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

(새 문서: ==개요== ;git checkout * 작업디렉토리와 스테이징영역의 차이를 확인하는 git 명령어 ==실습== <source lang='cli'> root@zetawiki:~# mkdir -p workspace/hel...)
 
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 14개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{소문자}}
==개요==
==개요==
;git checkout
;git checkout
* 작업디렉토리와 스테이징영역의 차이를 확인하는 [[git 명령어]]
;깃 체크아웃
* 브랜치를 전환하거나, 작업트리파일을 원복하는 [[git 명령어]]


==실습==
==실습 1==
<source lang='cli'>
{{참고|Git 브랜치 전환}}
root@zetawiki:~# mkdir -p workspace/hello
<syntaxhighlight lang='bash'>
root@zetawiki:~# cd workspace/hello/
git checkout 기존브랜치명
root@zetawiki:~/workspace/hello# git init
</syntaxhighlight>
Initialized empty Git repository in /root/workspace/hello/.git/
</source>
<source lang='cli'>
root@zetawiki:~/workspace/hello# echo 'hello world' > greet.txt
root@zetawiki:~/workspace/hello# git add greet.txt
root@zetawiki:~/workspace/hello# git commit -m 'hello world!'
[master (root-commit) 0794230] hello world!
Committer: root <root@zetawiki.example.com>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:


    git config --global user.name "Your Name"
==실습 2==
    git config --global user.email you@example.com
{{참고|Git 파일 원복}}
 
<syntaxhighlight lang='console'>
After doing this, you may fix the identity used for this commit with:
 
    git commit --amend --reset-author
 
1 file changed, 1 insertion(+)
create mode 100644 greet.txt
</source>
<source lang='cli'>
root@zetawiki:~/workspace/hello# echo 'good morning' >> greet.txt
root@zetawiki:~/workspace/hello# cat greet.txt
root@zetawiki:~/workspace/hello# cat greet.txt
hello world
hello world
good morning
good morning
</source>
</syntaxhighlight>
<source lang='cli'>
<syntaxhighlight lang='console'>
root@zetawiki:~/workspace/hello# git checkout HEAD greet.txt
root@zetawiki:~/workspace/hello# git checkout HEAD greet.txt
root@zetawiki:~/workspace/hello# cat greet.txt
root@zetawiki:~/workspace/hello# cat greet.txt
hello world
hello world
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[git commit]]
* [[git reset]]
*[[git diff]]
* [[git commit]]
*[[git 명령어]]
* [[git diff]]
* [[git 명령어]]
* [[git 브랜치 전환]]
* [[git add 취소하기]]
* [[git clone 특정 릴리즈 가져오기]]
* [[체크아웃]]


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

2021년 9월 24일 (금) 23:29 기준 최신판

1 개요[ | ]

git checkout
깃 체크아웃
  • 브랜치를 전환하거나, 작업트리파일을 원복하는 git 명령어

2 실습 1[ | ]

git checkout 기존브랜치명

3 실습 2[ | ]

root@zetawiki:~/workspace/hello# cat greet.txt
hello world
good morning
root@zetawiki:~/workspace/hello# git checkout HEAD greet.txt
root@zetawiki:~/workspace/hello# cat greet.txt
hello world

4 같이 보기[ | ]

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