1. Conflict 되는 파일 찾기
conflict가 발생하면 giit commit이 되지 않는데 conflict가 발생한 파일을 한번에 찾아주는 명령어이다.
git diff --name-only --diff-filter=U
stackoverflow.com/questions/3065650/whats-the-simplest-way-to-list-conflicted-files-in-git
2. git add 취소하기
git add를 취소해야하는 일이 꽤 많이 발생한다. 아래 명령어로 해결하도록 하자 뒤에 파일 명을 안적어주면 add된 모든 파일이 취소된다.
git reset HEAD filename
'Web Programming > Git' 카테고리의 다른 글
[git] Github Action 치트 시트 (0) | 2021.11.06 |
---|---|
[git] 취소하기 치트 시트 (0) | 2021.11.06 |