본문 바로가기

Git

[Git] 자주 발생하는 이슈들

반응형
  • 하위 디렉토리에 있는 모든 파일 추가
    • $ git add -f (폴더 이름)/\*
    • $ git add -f ./\*
  • fatal: You have not concluded your merge (MERGE_HEAD exists).
  • Please, commit your changes before you merge.
    • 메시지가 뜨는 경우 Git Bash에 아래 명령어 입력
      • $ git merge --abort
  • Remote Branch 이름 변경
    • Local에 있는 Branch 이름 변경
      • $ git branch -m old_branch new_branch
    • Remote에 존재하는 old_branch 삭제
      • $ git push origin :old_branch
    • new_branch 푸시하기
      • $ git push origin new_branch
  • Push 되돌리기
    • $ git reset --hard HEAD~n
      • (n은 되돌릴 작업의 갯수 ex) git reset --hard HEAD~2)
    • $ git push origin master
      • (암호 입력 요구함)
  • [Git] file name too long 이슈
    • $ git config --system core.longpaths true
반응형

'Git' 카테고리의 다른 글

[Git] Repository clone  (0) 2024.12.25
[Git] Remote Branch 이름 변경  (0) 2024.12.25
[Git] Push 되돌리기  (2) 2024.12.25
[Git] file name too long  (0) 2024.12.25
Git] 개념 설명 잘해놓은 사이트  (0) 2024.12.09