공통 Git 명령 목록

1500 단어
  • 로컬 지점을 흐트러뜨리고 지난번 [git pull] 이후로 되돌아가려고 합니다.- git reset --hard origin/master # You will need to be comfortable doing this! - git reset HEAD~1
  • 코드 수정이 시작되었지만 변경하고 싶지 않은 지점에서 발견되었습니다.
  • git checkout -b new_branch_name  # just create a new branch
    git add .                      # add the changes files
    git commit -m"your message"    # and commit them
    
  • 파일을 흐트러뜨려서 이 파일의 마지막 [git pull] 이후로 되돌려 보내려고 합니다.git checkout your/directories/filename
  • 로컬 수정을 했습니다. [git rebase]/[git reset]을 실행할 때 로컬 수정을 잃어버리고 싶지 않습니다.
  • rebasing 과정에서 헝클어졌어요.git rebase --abort # To abandon interactive rebase and merge issues
  • [push] 이전에commit 정보를 수정합니다.git commit --amend
  • [git log]를 종료한 결과press [q]
  • 프로젝트 디렉터리에서git 관련 정보를 삭제합니다.rm -rf .git
  • 발표된commit을 취소합니다.git revert --no-edit HEAD22
  • 원격 url을 추가합니다.git init git remote add origin
  • private 키를 추가합니다.cd ~/.ssh ssh-keygen -t rsa -C ‘[email protected]'
  • 어떤commit로 되돌아갑니다.git reset --hard git push -f
  • 추적 파일의 변화 무시 및 복구git update-index --assume-unchanged filegit update-index --no-assume-unchanged [ ...]
  • 좋은 웹페이지 즐겨찾기