Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- api gateway
- VPC
- prometheus
- 러스트
- 비구조화 할당
- Await
- 자바스크립트
- Kubernetes
- docker swarm
- 단축 평가
- On-Premise
- optional chaining
- elasticsearch
- 구조분해 할당
- cognito
- null 병합 연산자
- 온프레미스
- Site-to-Site VPN
- docker
- transit gateway
- grafana
- rust
- Service
- 옵셔널 체이닝
- vgw
- Endpoints
- Proxy Resource
- AWS
- JavaScript
- Custom Resource
Archives
- Today
- Total
만자의 개발일지
[Git] Git 유실된 커밋 복구하는 법 본문
# 유실된 커밋내역 확인
$ git reflog
# 유실된 커밋 가져오기 위해 브랜치 비우기
$ git commit --allow-empty
# 유실된 커밋 현재 브랜치로 가져오기
$ git cherry-pick <commit-ID>
'Git' 카테고리의 다른 글
[Git] ! [rejected] main -> main (non-fast-forward) 해결 방법 (0) | 2022.01.12 |
---|