Git(8)
-
warning: LF will be replaced by CRLF
인텔리제이 terminal 환경에서 git add . 명령어를 실행하였더니 아래와 같은 오류가 발생하였다. kimmj@LAPTOP-7RAGST0V MINGW64 ~/OneDrive/문서/GitHub/RecipeServer (main) $ git add . warning: LF will be replaced by CRLF in build/tmp/compileJava/source-classes-mapping.txt. The file will have its original line endings in your working directory 해결 방법 git config --global core.autocrlf true 위처럼 하면 해결이 되긴 하는데 레퍼런스 찾아볼때 true 자리에 false가 있는 자료..
2021.05.20 -
git commit 취소
git reset HEAD^ (가장 최신 커밋 1개 취소(삭제)) git reset HEAD^^(가장 최신 커밋 2개 취소(삭제)) codevang.tistory.com/227 gmlwjd9405.github.io/2018/05/25/git-add-cancle.html
2021.03.30 -
git log 정지, 탈출 방법
Q키를 누르면 로그화면을 탈출한다.
2021.03.30 -
Pull is not possible because you have unmerged files
해결방법 git status git commit -am "커밋메시지" 참고 velog.io/@2ujin/%EA%B9%83-Pull-is-not-possible-because-you-have-unmerged-files-%EC%97%90%EB%9F%AC
2021.03.23 -
Please commit your changes or stash them before you merge
깃 에러 Please commit your changes or stash them before you merge. 내가 코드를 수정하던 도중 다른 사람이 commit, push 하여 코드에 변경사항이 있다. 그럴때 내가 git pull origin main 했을 때 발생되는 사항 해결방법 1. 하던 작업을 저장하고 가장 최근 commit 상태로 만든다. - 현재 디렉토리의 파일을 임시로 백업하고 깨끗한 상태로 돌린다. - 버전 관리 되는 대상 파일들을 임시저장 해둔다고 보면된다. git stash 2. git pull 한다 git pull origin main 3. 저장되어있는 작업중 가장 최근 stash를 가져온다. git stash pop + git stash pop 하고 오류 직면 Auto-merg..
2021.03.17 -
깃허브 커밋기록 안될때
diordna.tistory.com/37
2021.03.08