-
[Git] 이미 올린 PR 수정하는 방법 (+ Commit, Merge 취소하는 방법)AWS, Infra/Gitlab 2022. 11. 22. 10:13
이미 올린 PR 수정하는 방법
- 수정 후 git add 하기 (이미 추가된 경우 필요 X)
- git commit --amend (commit 덮어쓰기)
- git push -f origin [branch-name]
무조건 강제로 밀어 넣어야 반영이 된다.
Commit 취소하는 방법
- git reset --soft HEAD^
Merge 취소하는 방법
git reset --merge ORIG_HEAD (현재 바라보고 있는 헤드의 merge 취소)
Git 커밋 계정 정보 수정
git config --local user.name "계정명"
git config --local user.email "이메일주소"
Git 로컬 패스워드 수정
git config --unset credential.helper
git pull (혹은 git push ...)
반응형'AWS, Infra > Gitlab' 카테고리의 다른 글
[git] git clone 오류 (Clone succeeded, but checkout failed) (0) 2022.03.22 [git, gitlab] .gitignore로 확장자 없는 파일을 무시하는 법 (gitignore) (0) 2021.12.15