전체 글
-
Ch8. Syncing With a RemoteRay Wenderlich/Mastering Git 2021. 8. 21. 16:26
git push origin master # master 브랜치를 remote(origin)와 syncronize 하여라! git pull origin # editor opens Merge branch 'master' of https://github.com/belangerc/ideas # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit. git pull은 gi..
-
Ch7. BranchingRay Wenderlich/Mastering Git 2021. 8. 6. 00:01
master브랜치는 git이 기본으로 생성하는 브랜치의 이름 git config --global init.defaultBranch main 으로 default name 변경 가능 (새로운 레포지터리 만들때만 가능) Creating a branch git branch testBranch How Git track branches ls .git/refs/heads/ >> master testBranch cat .git/refs/heads/testBranch >> a0bd93448dacba241f03063b43f9f31adadea4d8 (some hash value) git log -1 commit a0bd93448dacba241f03063b43f9f31adadea4d8 (HEAD -> master, testB..
-
Ch6. Git Log & HistoryRay Wenderlich/Mastering Git 2021. 8. 5. 23:59
git log git log -3 git log --oneline Hash commit 477e542bfa35942ddf069d85fbe3fb0923cfab47 (HEAD -> master) 477e542 (HEAD -> master) Adding .gitignore files and HTML --oneline옵션을 사용하면 commit hash가 앞의 7글자만 나온다. 7글자의 hash로 collision이 날 확률은 거의 없으니 안심해도 된다. Graphical views of your repository git log --graph git log --oneline --graph --all Using Git shortlog git shortlog Searching Git history git log ..
-
Ch5. Ignoring Files in GitRay Wenderlich/Mastering Git 2021. 8. 5. 23:56
*/*.html Subdirectory에 있는 html파일을 무시하라! Nesting .gitignore files top directory의 .gitignore에서 */*.html 를 선언했다. 근데 특정 subdirectory에서는 html파일을 track하고 싶다면?? !/*.html !는 부정을 의미하고 /는 지금 이 directory부터라는 의미다. 그래서 /*.html은 지금부터는 html파일을 ignore하지마!! 라는 뜻이다. Looking at the global .gitignore git config --global core.excludesfile 터미널에 이 명령어를 실행하면 global .gitignore의 위치를 알려준다. 알려주지 않는다면 이제 만들면 됨 (원하는 위치에 만들어 ..
-
Ch4. The Staging AreaRay Wenderlich/Mastering Git 2021. 7. 29. 02:16
git reset HEAD books/management_book_ideas.md HEAD의 의미 가장 최근의 commit을 가리킨다. 위 명령의 의미는 Staging Area에서 books/management_book_ideas.md 파일을 HEAD상태로 되돌려라. 그냥 Unstage임..ㅋㅋ 파일 옮기기 mv videos/platform_ideas.md website 이렇게 하면 git은 videos/platform_ideas.md 파일이 삭제된 것으로 인식한다. 왜냐?? git은 directory에 관심이 없다고 Ch3에 설명했었다. git은 videos/platform_ideas.md path에 해당하는 파일이 더 이상 존재하지 않기 때문에 이 파일이 삭제된 것으로 인식한다. // mv 커맨드 실..
-
Ch3.Commiting your changesRay Wenderlich/Mastering Git 2021. 7. 29. 02:11
// 간단한 것들 git status git diff // working area를 비교함, stage된 변화는 알 수 없음 git diff --staged // stage된 변화를 알 수 있음 git add filepath git add . Git log git log // 커밋 메시지만 보여줌 git log -p // 커밋 diff까지 보여줌 // Space bar로 pagination가능, q로 종료 가능 디렉터리를 만들었는데 Nothing to commit? // 디렉터리를 만들었는데, nothing to commit?? mkdir tutorials ~/MasteringGit/ideas $ git status On branch master Your branch is ahead of 'origin/..
-
WWDC2020 - Unsafe Swift앱등이에게 살충제를 뿌린다./Swift 2021. 5. 14. 18:41
Unsafe Swift Swift에서 제공하는 많은 타입, 프로토콜, 프로퍼티등 그 중 Unsafe라는 접두어를 가진 것들이 있다. 무엇이 다른 것일까? 수행하는 기능, 인터페이스에서 큰 차이점을 가지지는 않는다. Invalid Input을 처리하는 과정에서 차이점을 가진다. 대부분의 Operator가 Input을 완전히 Validation한다. (Swift가 Safe한 Programming Language인 이유) 그래서 우리는 쉽게 에러를 리포트받고 수정할 수 있다. Example Optional을 예로 들어보자. let value: Int? = nil print(value!) // Fatal error: Unexpectedly found nil while unwrapping an Optional v..
-
Ch14. AnimationsRay Wenderlich/SwiftUI 2021. 2. 14. 18:23
SwiftUI의 애니메이션은 UIKit보다 훨씬 간단하다. Animating state changes 직역해보면 물음표 짓게 만들지만 코드를 보면 이해가 된다. Adding animation Image(systemName: "chevron.up.square") .rotationEffect(.degrees(showDetails ? 0 : 180)) .animation(.default) 1, 2번 라인은 showDetails값에 따라 rotation을 업데이트한다. 즉 3번 라인이 없어도 무방하다. .animation(.default) 한 줄로 이미지가 회전하는 애니메이션이 생겼다. 0과 180을 오가는 애니메이션은 정방향 기준으로 시계방향으로 회전할 것이다. 하지만 180대신 -180을 넣으면 반시계방향으..