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 |
Tags
- Xcode
- Refactoring
- uitableview
- UITextView
- clean architecture
- Human interface guide
- swiftUI
- ribs
- Observable
- uiscrollview
- collectionview
- swift documentation
- 리펙터링
- UICollectionView
- 애니메이션
- Clean Code
- tableView
- RxCocoa
- Protocol
- HIG
- rxswift
- 리팩토링
- SWIFT
- MVVM
- 클린 코드
- ios
- map
- combine
- 스위프트
- 리펙토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[Git - terminal] git 유용한 명령어 모음 (커밋, 상태, 로그, 되돌리기, Interactive) 본문
Git, CocoaPods, Xcode, Shell/Git
[Git - terminal] git 유용한 명령어 모음 (커밋, 상태, 로그, 되돌리기, Interactive)
jake-kim 2023. 5. 9. 01:08커밋
- git commit m "add commit": 현재 stage에 올라간 것들을 커밋
- git commit -am "add commit": stage에 올리기 + 커밋
상태
- git status: 현재 stage에 올라간 파일과 unstage에 올라간 파일 확인 가능
- git diff: 변경된 내용 확인
- git diff --staged: commit된 파일 vs add된 파일
- git diff {해쉬1} {해쉬2}: commit간 비교
- git diff {브랜치1} {브랜치2}: 브랜치간 비교
- git log --graph: 커밋 최종 결과만 그래프로 확인
- git reflog: 커밋 결과 뿐만이 아닌 수정사항까지 다 나옴 (어디서 git rebase -i를 했고, squash를 했고 모든 것을 기록)
되돌리기
- 리셋 (구체적인 내용은 포스팅 글 참고)
- git reset {commit hash}
- git reset HEAD^
- git reest HEAD~2
- rebase interactive 되돌리기 (git reset과 git reflog 사용)
- git restore --staged .: 현재 stage 영역을 unstage로 내림 (git add . 와 반대)
Interactive
'Git, CocoaPods, Xcode, Shell > Git' 카테고리의 다른 글
Comments