Skip to content

Commit 5384e8b

Browse files
committed
Escape some special characters
Detail ====== - for pass epubcheck
1 parent 2c459af commit 5384e8b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

book/06-github/sections/2-contributing.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ Your next question may be “How do I reference the old Pull Request?”. It tur
511511
//////////////////////////
512512
Let's start with how to cross-reference another Pull Request or an Issue. All Pull Requests and Issues are assigned numbers and they are unique within the project. For example, you can't have Pull Request #3 _and_ Issue #3. If you want to reference any Pull Request or Issue from any other one, you can simply put `#<num>` in any comment or description. You can also be more specific if the Issue or Pull request lives somewhere else; write `username#<num>` if you're referring to an Issue or Pull Request in a fork of the repository you're in, or `username/repo#<num>` to reference something in another repository.
513513
//////////////////////////
514-
먼저 Issue와 Pull Request를 서로 참조시키는 방법부터 살펴보자. 모든 Pull Request와 Issue에는 프로젝트 내에서 유일한 번호를 하나 할당한다. 예를 들어, #3인 Pull Request와 #3인 Issue는 동시에 있을 수 없다. `#<num>` 과 같은 형태로 코멘트가나 설명에 Pull Request와 Issue를 참조시킬 수 있다. 이 방법은 단일 프로젝트 범위에서만 유효하다. Fork 저장소의 Issue나 Pull Request를 참조시키려고 한다면 `username#<num>` 라고 쓰고 아예 다른 저장소면 `username/repo#<num>` 라고 써야 한다.
514+
먼저 Issue와 Pull Request를 서로 참조시키는 방법부터 살펴보자. 모든 Pull Request와 Issue에는 프로젝트 내에서 유일한 번호를 하나 할당한다. 예를 들어, \#3인 Pull Request와 #3인 Issue는 동시에 있을 수 없다. `#<num>` 과 같은 형태로 코멘트가나 설명에 Pull Request와 Issue를 참조시킬 수 있다. 이 방법은 단일 프로젝트 범위에서만 유효하다. Fork 저장소의 Issue나 Pull Request를 참조시키려고 한다면 `username#<num>` 라고 쓰고 아예 다른 저장소면 `username/repo#<num>` 라고 써야 한다.
515515
516516
//////////////////////////
517517
Let's look at an example. Say we rebased the branch in the previous example, created a new pull request for it, and now we want to reference the old pull request from the new one. We also want to reference an issue in the fork of the repository and an issue in a completely different project. We can fill out the description just like <<_pr_references>>.

book/06-github/sections/3-maintaining.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ We won't belabor this here; if you need a refresher, check out <<ch02-git-basics
6464
6565
//////////////////////////
6666
Now that your project is hosted on GitHub, you can give the URL to anyone you want to share your project with.
67-
Every project on GitHub is accessible over HTTPS as `https://github.com/<user>/<project_name>`, and over SSH as `[email protected]:<user>/<project_name>`.
67+
Every project on GitHub is accessible over HTTPS as `\https://github.com/<user>/<project_name>`, and over SSH as `[email protected]:<user>/<project_name>`.
6868
Git can fetch from and push to both of these URLs, but they are access-controlled based on the credentials of the user connecting to them.
6969
//////////////////////////
7070
GitHub에 프로젝트를 올렸으면 다른 사람들에게 프로젝트 URL을 알려주고 공유할 수 있다.
71-
모든 프로젝트의 HTTPS URL은 `https://github.com/<user>/<project_name>` 처럼 생겼고 SSH는 `[email protected]:<user>/<project_name>` 처럼 생겼다.
71+
모든 프로젝트의 HTTPS URL은 `\https://github.com/<user>/<project_name>` 처럼 생겼고 SSH는 `[email protected]:<user>/<project_name>` 처럼 생겼다.
7272
Git은 이 두 URL을 통해서 Fetch 하고 Push 할 수 있지만, 인증 방식은 사용하는 프로토콜에 따라 다르다.
7373
7474
[NOTE]

0 commit comments

Comments
 (0)