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
- map
- Observable
- UITextView
- SWIFT
- combine
- tableView
- swift documentation
- 애니메이션
- MVVM
- uitableview
- ios
- Refactoring
- uiscrollview
- 스위프트
- 리팩토링
- 클린 코드
- ribs
- HIG
- collectionview
- Protocol
- UICollectionView
- Xcode
- rxswift
- Human interface guide
- RxCocoa
- 리펙토링
- Clean Code
- 리펙터링
- swiftUI
- clean architecture
Archives
- Today
- Total
목록git 유용한 명령어 (1)
김종권의 iOS 앱 개발 알아가기
[Git - terminal] git 유용한 명령어 모음 (커밋, 상태, 로그, 되돌리기, Interactive)
커밋 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, CocoaPods, Xcode, Shell/Git
2023. 5. 9. 01:08