힘내 치트 시트

3013 단어 git
개발 중에 매우 유용한 몇 가지 명령을 찾았습니다.


명령
설명

git commit -am "message"추적된 모든 파일 추가 및 커밋
git fetch --all --prune모든 원격 가져오기, 죽은 원격 분기 삭제
git reset --merge병합 중단, 이전과 같이 재설정(아직 푸시되지 않은 로컬 커밋이 있는 경우)
git merge --strategy-option theirs [branch]분기를 현재 분기에 병합하여 작업을 충돌 상태로 유지
git branch --unset-upstream업스트림 분기 제거
git reset myfile.js준비 영역에서 제거
git commit --amend --no-edit수정 메시지 없이 수정
git commit --amend --no-edit --patch편집 메시지 없이 수정 + 커밋할 변경 사항을 대화식으로 선택
git checkout -이전 분기로 전환
git checkout [branch] -- path/to/file.scss다른 브랜치에서 파일을 가져와 현재 브랜치에 복사
git stash -u모든 파일(추적되지 않은 파일도 포함)을 숨김
git reset --soft A파일을 제거하지만 스테이징 영역에서 계속 사용 가능
git reset --mixed Agit reset A (기본값) 스테이징 영역에서도 파일을 제거합니다.
git reset --hard존재하지 않는 파일 제거
git stash clear모든 은닉처 삭제
git fetch origin; git reset --hard origin/main원격 메인 브랜치로 복원
git log --tags --simplify-by-decoration --pretty="format:%ci %d"태그 세부정보 표시
git log --graph --abbrev-commit --decorate장식 가지를 사용하여 커밋 표시
git log --decorate --oneline --graph --date-order master@{"4 days ago"}..master컴팩트 그래프에서 지난 4일의 커밋 표시

`git diff --이름만
유니크

{% 원시 %}git push origin :feature/branchname
원격 지점 삭제
git push origin --delete feature/branchname원격 지점 삭제
git push origin --all모든 로컬 지점 푸시
git fetch --prune --prune-tags로컬 태그 제거, 태그를 리모컨에 정렬
git ls-remote --tags origin모든 원격 태그 나열


⚡️ 보너스 팁



자주 사용하는 명령어가 있으면 전역 git 별칭으로 저장할 수 있습니다.

git config --global alias.fixup 'commit --amend --no-edit'


그런 다음 사용

git fixup


지적해주셔서 감사합니다. 😎

git 태그 이름 바꾸기




git tag [new] [old]
git tag -d [old]
git push origin :refs/tags/[old]
git push --tags


원격 태그를 가져올 때 업데이트된 태그가 있는지 확인하십시오.

git pull --prune --tags


GitLab 분기 비교


  • 왼쪽 사이드바 열기
  • Repository > Compare 클릭

  • https://github.com/giuliachiola/super-blog-11ty/compare/[source]...[target]
    


    예시:

    https://github.com/giuliachiola/super-blog-11ty/compare/main...develop
    

    좋은 웹페이지 즐겨찾기