힘내 치트 시트
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 A
git 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
Reference
이 문제에 관하여(힘내 치트 시트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/giulia_chiola/git-cheatsheet-3ffl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)