public repo에 aws access key 값이 하드코딩된 파일을 커밋했다.

git rebase -i 를 활용하면, commit history 를 지울 수 있다

 

1. 원하는 commit으로 이동 (뒤에 ~을 안 쓰면, 그 이후 커밋만 보임

git rebase -i <commit 해시값>~

 

2. commit history 파일에서 해당하는 commit의 flag를 pick에서 edit으로 변경 -> 저장 후 파일 닫기

3. 하드 코딩된 부분 수정

4. git commit -a --amend

git add --all
git commit -a --amend

5. 수정사항 최종 반영

git rebase --continue

6. 리모트 repo에 push

git push -f

 

해당 커밋에서 하드코딩된 부분이 변경된 채 히스토리에 남음

자꾸 헷갈려서 각 case 별 방법 정리

 

1. Remote Branch에 있는 Branch로 이동

git fetch
git checkout other-branch

git fetch는 메타 정보만 불러옴

 

2. Remote Branch Update 내역 Local Branch에 적용

git checkout other-branch
git pull

업데이트하려는 branch에서 git pull을 하면 Remote Branch에서의 업데이트 내역이 반영됨

 

3. Remote Origin Update 내역 Local Origin에 적용

git checkout other-branch
git pull origin main

업데이트하려는 branch에 main branch의 update 내역이 반영됨

 

4. Local Branch -> Remote Branch

git checkout other-branch
# 작업...
git add --all
git commit -m "comment"
git pull # 내가 commit 하기 전에 다른 사람이 remote branch에 commit했을 경우
git push origin other-branch

5. Local Branch -> Remote Origin Branch (PR로 보통 branch 충돌을 점검해야 하므로, 거의 쓸일 없을 듯)

git checkout other-branch
# 작업...
git add --all
git commit -m "comment"
git pull origin main # 내가 commit 하기 전에 다른 사람이 remote branch에 commit했을 경우
git push origin other-branch:main # git push origin <local>:<remote>

 

Reference

 

Git - ( local / remote ) branch 사용법 정리

Git 명령어 Fetch -> 리모트 저장소에 있는 모든 데이터를 로컬로 가져옴. Git branch [브랜치명] => 새로운 브랜치 생성 Git checkout [브랜치명] => 브랜치 checkout(다른 브랜치로 이동) Git commit => ———> 한

jw910911.tistory.com

 

Git - git-push Documentation

In general, URLs contain information about the transport protocol, the address of the remote server, and the path to the repository. Depending on the transport protocol, some of this information may be absent. Git supports ssh, git, http, and https protoco

git-scm.com

1. 최근 10개 commit들 불러오기 (git-rebase-todo라는 text 파일이 열림)

git rebase -i HEAD~10

git rebase -i 에 대한 설명

-i, --interactive     let the user edit the list of commits to rebase

 

2. git-rebase-todo에서 PR 화면에 안 보이게 하고싶은 commit들 fixup 처리

fixup에 대한 설명

# Commands:
# p, pick <commit> = use commit
# r, reword <commit> = use commit, but edit the commit message
# e, edit <commit> = use commit, but stop for amending
# s, squash <commit> = use commit, but meld into previous commit
# f, fixup [-C | -c] <commit> = like "squash" but keep only the previous
#                    commit's log message, unless -C is used, in which case
#                    keep only this commit's message; -c is same as -C but
#                    opens the editor
# x, exec <command> = run command (the rest of the line) using shell
# b, break = stop here (continue rebase later with 'git rebase --continue')
# d, drop <commit> = remove commit
# l, label <label> = label current HEAD with a name
# t, reset <label> = reset HEAD to a label
# m, merge [-C <commit> | -c <commit>] <label> [# <oneline>]
# .       create a merge commit using the original merge commit's
# .       message (or the oneline, if no original merge commit was
# .       specified); use -c <commit> to reword the commit message

 

3. git push --force로 다듬은 commit들로 push하면 PR이 다듬어짐

git push origin local:remote --force

 

Local에 이미 내 개인 계정 github id가 등록되어 있다.

회사 github을 연결하고 싶다

 

https://stackoverflow.com/questions/4220416/can-i-specify-multiple-users-for-myself-in-gitconfig

 

Can I specify multiple users for myself in .gitconfig?

In my ~/.gitconfig, I list my personal email address under [user], since that's what I want to use for Github repos. But, I've recently started using git for work, too. My company's git repo allow...

stackoverflow.com

 

회사에서 PR을 열었다가, 오류를 발견하고 PR을 닫았다.

내 branch에 올라간 commit을 revert 하는 방법은 다음과 같다.

 

로컬 

git reset --hard HEAD~1

로컬 commit이 이전 log로 돌아간다.

 

리모트

git push -f origin harry-l

리모트 브랜치인 harry-l의 커밋 상태가 취소 된다.

 

Reference

+ Recent posts