반응형
Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- bitbake
- l4t
- gstsample
- /dev/kmsg
- 오블완
- 티스토리챌린지
- libargus api
- LAYERS
- cpu frequency
- RDEPENDS
- yocto
- Jetson
- linux
- nvarguscamerasrc
- orin nx
- libargus
- server error
- gcc7
- meta-tegra
- udpsink
- mkfs.ext4
- 봉화 숲속캠핑장
- vpi
- ssd 포맷
- nvidia
- bash
- camera
- boot process
- vpiimage
- lineedit
Archives
- Today
- Total
DREAMER
[Git] 본문
728x90
반응형
git log --decorate --oneline --graph
git format-patch -1 -o ~/Yocto/Poky/MyLayer/recipes-myrecipe/mycomponent/files/
git rebase -i {제거하려고 하는 커밋의 직전 커밋 id}
drop 으로 변경
git log --name-status -2
Will show you the names of the files that changed for the last two commits.
git log -p -2
Will show you the changes themselves.
Before pulling,
git fetch
git log --name-status origin/master..
Will show you what commits you are about to retrieve, along with the names of the files.
$ git fetch
$ git diff master...origin/master
728x90
반응형
Comments