You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/01-introduction/sections/installing.asc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ If you want to install the basic Git tools on Linux via a binary installer, you
37
37
If you're on Fedora (or any closely-related RPM-based distribution, such as RHEL or CentOS), you can use `dnf`:
38
38
//////////////////////////
39
39
Linux에서 패키지로 Git을 설치할 때는 보통 각 배포판에서 사용하는 패키지 관리도구를 사용하여 설치한다.
40
-
Fedora(또는 비슷하게 RPM 기반 패키지 시스템을 사용하는 RHEL, CentOS)에서는 아래와 같이 `dnf`를 사용 한다.
40
+
Fedora(또는 비슷하게 RPM 기반 패키지 시스템을 사용하는 RHEL, CentOS)에서는 아래와 같이 `dnf`를 사용 한다.
41
41
42
42
[source,console]
43
43
----
@@ -47,7 +47,7 @@ $ sudo dnf install git-all
47
47
//////////////////////////
48
48
If you're on a Debian-based distribution, such as Ubuntu, try `apt`:
49
49
//////////////////////////
50
-
Ubuntu등의 데비안 계열 배포판에서는 `apt`를 사용한다.
50
+
Ubuntu등의 데비안 계열 배포판에서는 `apt`를 사용한다.
51
51
52
52
[source,console]
53
53
----
@@ -161,7 +161,7 @@ If you do want to install Git from source, you need to have the following librar
161
161
For example, if you're on a system that has `dnf` (such as Fedora) or `apt-get` (such as a Debian-based system), you can use one of these commands to install the minimal dependencies for compiling and installing the Git binaries:
162
162
//////////////////////////
163
163
Git을 설치하려면 Git이 의존하고 있는 라이브러리인 autotools, curl, zlib, openssl, expat, libiconv등이 필요하다.
164
-
예를 들어 `dnf`을 사용하는 Fedora등의 시스템이나 `apt-get`이 있는 데비안 계열 시스템이면 아래 명령어 중 하나를 실행하여 필요한 패키지를 설치할 수 있다.
164
+
예를 들어 `dnf`을 사용하는 Fedora등의 시스템이나 `apt-get`이 있는 데비안 계열 시스템이면 아래 명령어 중 하나를 실행하여 필요한 패키지를 설치할 수 있다.
Copy file name to clipboardExpand all lines: book/02-git-basics/sections/getting-a-repository.asc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ If you go into the new `libgit2` directory that was just created, you'll see the
143
143
//////////////////////////
144
144
If you want to clone the repository into a directory named something other than `libgit2`, you can specify the new directory name as an additional argument:
145
145
//////////////////////////
146
-
아래과 같은 명령을 사용하여 저장소를 Clone 하면 `libgit2`이 아니라 다른 디렉토리 이름으로 Clone 할 수 있다.
146
+
아래과 같은 명령을 사용하여 저장소를 Clone 하면 `libgit2`이 아니라 다른 디렉토리 이름으로 Clone 할 수 있다.
Copy file name to clipboardExpand all lines: book/02-git-basics/sections/remotes.asc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ If you've cloned your repository, you should at least see `origin` -- that is th
47
47
//////////////////////////
48
48
`git remote` 명령으로 현재 프로젝트에 등록된 리모트 저장소를 확인할 수 있다.(((git commands, remote)))
49
49
이 명령은 리모트 저장소의 단축 이름을 보여준다.
50
-
저장소를 Clone 하면 `origin`이라는 리모트 저장소가 자동으로 등록되기 때문에 `origin`이라는 이름을 볼 수 있다.
50
+
저장소를 Clone 하면 `origin`이라는 리모트 저장소가 자동으로 등록되기 때문에 `origin`이라는 이름을 볼 수 있다.
51
51
52
52
[source,console]
53
53
----
@@ -216,7 +216,7 @@ The command for this is simple: `git push <remote> <branch>`.(((git commands, pu
216
216
If you want to push your master branch to your `origin` server (again, cloning generally sets up both of those names for you automatically), then you can run this to push any commits you've done back up to the server:
0 commit comments