일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Carousel
- alias설정
- 조건부스타일
- 서초구보건소 #무료CPR교육
- BlockFormattingContext
- 함수형프로그래밍
- debouncing
- DOM
- QueryClient
- 리액트
- 제어컴포넌트
- 부모패딩
- ㅡ
- react
- 문제해결
- parent padding
- 화살표2개
- createPortal
- twoarrow
- es6
- 부모요소의 패딩 무시
- tailwindCSS
- transition
- ?? #null병합연산자
- ignore padding
- accordian
- vite
- useQueryClient
- CustomHook
- BFC
Archives
- Today
- Total
프론트엔드 첫걸음
git flow 사용하다가 실수로 finish 해버렷다면.... merge 취소하고 싶다면... 본문
https://stackoverflow.com/questions/13450039/how-to-undo-git-flow-feature-finish
[How to undo git flow feature finish?
I am learning git-flow and I just did git flow feature finish , which merged my feature branch to develop and removed it. Instead of this, I want to push the feature branch to ...
stackoverflow.com](https://stackoverflow.com/questions/13450039/how-to-undo-git-flow-feature-finish)
git log
sha1 is the commit right before the merge (머지전의 develop 커밋)
sha2 is the last commit on develop before you started working on the feature (갈라졌던 커밋)
git checkout develop
git checkout -b feature/<feature-name>
git reset <sha1> --hard
git checkout develop
git reset <sha2> --hard
devolop에서 font-pertandard로 갈라져나가서 커밋 1개 feature finish했을때...
merge 직전의 커밋 da42a92 가 sha1
font-pretendard가 갈라져나왔던 e31d20e가 sha2
'개발 공부 > Git' 카테고리의 다른 글
실수로 push했을때 git push -f origin [branch-name] (0) | 2024.02.13 |
---|---|
[문제해결] fatal: unable to access [원격 주소]: The requested URL returned error: 400 (0) | 2022.07.14 |
git push -u origin master 에서 -u 는 upstream의 u (0) | 2022.07.10 |
Git Push (0) | 2022.07.09 |
git remote add [원격이름] [원격저장소ur] (0) | 2022.07.09 |