diff --git a/book/03-git-branching/sections/basic-branching-and-merging.asc b/book/03-git-branching/sections/basic-branching-and-merging.asc index 07f1bb97..f71a1c8e 100644 --- a/book/03-git-branching/sections/basic-branching-and-merging.asc +++ b/book/03-git-branching/sections/basic-branching-and-merging.asc @@ -415,7 +415,7 @@ After you've resolved each of these sections in each conflicted file, run `git a Staging the file marks it as resolved in Git. ////////////////////////// 충돌한 양쪽에서 조금씩 가져와서 새로 수정했다. -그리고 `<<<<<<<`, `=======`, `>>>>>>>`가 포함된 행을 삭제하였다. +그리고 `<<<<<<<`, `=======`, `>>>>>>>`가 포함된 행을 삭제했다. 이렇게 충돌한 부분을 해결하고 `git add` 명령으로 다시 Git에 저장한다. ////////////////////////// diff --git a/book/06-github/sections/3-maintaining.asc b/book/06-github/sections/3-maintaining.asc index 120105c5..e8007472 100644 --- a/book/06-github/sections/3-maintaining.asc +++ b/book/06-github/sections/3-maintaining.asc @@ -133,7 +133,7 @@ image::images/collaborators.png[저장소의 동료.] ////////////////////////// Now that you have a project with some code in it and maybe even a few collaborators who also have push access, let's go over what to do when you get a Pull Request yourself. ////////////////////////// -프로젝트를 만들고 코드도 넣고 동료가 Push 할 수 있게 하였다. 이제 Pull Reqeust가 왔을 때 어떻게 해야 하는지 보자. +프로젝트를 만들고 코드도 넣고 동료가 Push 할 수 있게 했다. 이제 Pull Reqeust가 왔을 때 어떻게 해야 하는지 보자. ////////////////////////// Pull Requests can either come from a branch in a fork of your repository or they can come from another branch in the same repository. The only difference is that the ones in a fork are often from people where you can't push to their branch and they can't push to yours, whereas with internal Pull Requests generally both parties can access the branch. diff --git a/book/B-embedding-git/sections/jgit.asc b/book/B-embedding-git/sections/jgit.asc index f5cff4ab..42be2ad2 100644 --- a/book/B-embedding-git/sections/jgit.asc +++ b/book/B-embedding-git/sections/jgit.asc @@ -192,7 +192,7 @@ The plumbing APIs are rather complete, but it can be cumbersome to string them t JGit provides a higher-level set of APIs to help out with this, and the entry point to these APIs is the `Git` class: ////////////////////////// Plumbing API로도 모든 일을 다 할 수 있지만, 일반적인 상황에 사용하기에는 좀 귀찮다. Index에 파일을 추가하거나 새로 커밋하는 것 같은 일은 Porcelain API가 낫다. -Porcelain API는 고수준에서 사용하기 편하게 하였고 `Git` 클래스의 인스턴스를 만드는 것으로 시작한다. +Porcelain API는 고수준에서 사용하기 편하게 했고 `Git` 클래스의 인스턴스를 만드는 것으로 시작한다. [source,java] ----