Notice
Recent Posts
Recent Comments
Link
투케이2K
69. (Bitbucket/Git) git reset 리셋 사용해 git add 파일 추가 한 것 취소 하기 - git add cancel 본문
비트버킷 & Git
69. (Bitbucket/Git) git reset 리셋 사용해 git add 파일 추가 한 것 취소 하기 - git add cancel
투케이2K 2024. 10. 1. 10:45[환경 설정]
저장소 : Bitbucket / Git
사용 목적 : 소스 코드 버전 관리 실시
[설 명]
# ----------------------------------------------------------------------------------
[환경 설정]
# ----------------------------------------------------------------------------------
저장소 : Bitbucket / Git
사용 목적 : 소스 코드 버전 관리 실시
# ----------------------------------------------------------------------------------
# [설 명]
# ----------------------------------------------------------------------------------
1. git add 는 로컬에서 수정 된 소스 코드 파일을 Staging Area 에 넣을 수 있습니다.
2. git reset 은 git add 로 staging 모드에 추가 된 파일을 다시 unstaging 모드로 전환할 수 있습니다
# ----------------------------------------------------------------------------------
# [소스 코드]
# ----------------------------------------------------------------------------------
1. 사전 git 에서 특정 프로젝트에 있는 파일 수정 실시
2. git add 명령어를 사용해 소스 코드 추가 실시
>> 명령어 : git add --all
3. git status 명령어를 사용해 git staging 상태 확인
>> 명령어 : git status
>> 결과 출력 :
On branch master
Your branch is up to date with 'origin/master'. ------------------> 브랜치 명칭
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: TestCode --------------------------------> 수정 된 파일
new file: history -------------------------------------> 추가 된 파일
4. git reset 명령어를 사용해 git add 로 stating 에 추가 된 상태 unstaging 전환
>> 명령어 (전체 파일) : git reset
>> 명령어 (특정 파일 - test.txt) : git reset HEAD test.txt
5. git status 명령어를 사용해 git staging 상태 확인
>> 명령어 : git status
>> 결과 출력 :
On branch master
Your branch is up to date with 'origin/master'. ------------------> 브랜치 명칭
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: TestCode
Untracked files:
(use "git add <file>..." to include in what will be committed)
history
# ----------------------------------------------------------------------------------
반응형
'비트버킷 & Git' 카테고리의 다른 글
71. (Bitbucket/Git) git 프로젝트 .gradle 폴더 및 파일 설명 (0) | 2024.10.01 |
---|---|
70. (Bitbucket/Git) git reset 리셋 사용해 git commit 커밋 취소 하기 - git commit cancel (0) | 2024.10.01 |
68. (Bitbucket/Git) hprof 파일 설명 (0) | 2024.10.01 |
67. (Bitbucket/Git) Checksum 체크섬 파일 개념 설명 (0) | 2024.09.30 |
66. (Bitbucket/Git) [Ios] DS_Store 파일 개념 설명 (0) | 2024.09.30 |
Comments