반응형
Git 을 사용하여 작업을 진행할 때, 변경된 사항을 앚기 commit 하지 않고 다시 원래 상태로 돌리고 싶은 경우 아래의 명령어를 사용할 수 있다.
git reset
git checkout .
git clean -dfx
명령줄의 내용 중 clean 명령의 경우 다음과 같이 d, f, x 플래그를 같이 주면 현재 추적되어 있는 파일들을 제외하고 (ignore 처리된 파일까지) 모든 파일을 삭제해준다.
root@localhost:~# git clean -h
usage: git clean [-d] [-f] [-n] [-q] [-e <pattern>] [-x | -X] [--] <paths>...
-q, --quiet do not print names of files removed
-n, --dry-run dry run
-f, --force force
-d remove whole directories
-e, --exclude <pattern>
add <pattern> to ignore rules
-x remove ignored files, too
-X remove only ignored files
'소프트웨어 아키텍처 > Linux' 카테고리의 다른 글
[Linux] Rhel, fedora 환경에 인증서 추가하기 (0) | 2021.11.04 |
---|---|
[Linux] cat 명령을 사용해서 텍스트 파일 만들기 (0) | 2021.11.04 |
Linux - cURL 명령어 사용시 주의점 & 팁 (0) | 2021.10.08 |
Linux shell script : 입력값 검증과 help 문구 (0) | 2021.09.09 |
Linux 활용 : sed 명령어를 이용하여 텍스트 파일 치환 (0) | 2021.09.05 |
댓글