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
- sqlite
- 맛집
- 날짜
- PER
- MySQL
- ubuntu
- flutter
- Excel
- 다이어트
- tensorflow
- swift
- urllib
- Unity
- IOS
- pandas
- 리눅스
- GIT
- ASP
- 라즈베리파이
- port
- 유니티
- 함수
- PyQt5
- node.js
- Linux
- MS-SQL
- mssql
- python
- javascript
- PyQt
Archives
아미(아름다운미소)
Git : reflog 명령어 정리 본문
reflog
log와 비슷하지만 log가 커밋 이력을 출력한다면 reflog는 헤드 이동 이력을 출력한다.
$ git reflog -5 # 마지막 다섯 번의 헤드 이동 이력을 역순으로 출력
2fbc899 HEAD@{0}: checkout: moving from master to master
2fbc899 HEAD@{1}: pull: Merge made by the 'recursive' strategy.
7107b9e HEAD@{2}: checkout: moving from d to master
53576ad HEAD@{3}: merge c: Fast-forward
2bc9237 HEAD@{4}: checkout: moving from c to d
'랭귀지 > Git' 카테고리의 다른 글
Git : revert 명령어 정리 (0) | 2018.07.26 |
---|---|
Git : reset 명령어 정리 (0) | 2018.07.25 |
Git : rebase 명령어 정리 (0) | 2018.07.22 |
Git : push 명령어 정리 (0) | 2018.07.21 |
Git : mv 명령어 정리 (0) | 2018.07.19 |
Comments