Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/04-git-server/sections/gitlab.asc
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ To get something up and running quickly, you can download a virtual machine imag
One nice touch Bitnami has included is the login screen (accessed by typing alt-→); it tells you the IP address and default username and password for the installed GitLab.
//////////////////////////
설치 방법은 여러 가지가 있다.
가상 머신 이미지나 원클릭 인스톨러를 내려받아 빨리 설치하고 환경에 맞게 후다닥 설정해서 사용할 수 있다.(((bitnami))) https://bitnami.com/stack/gitlab[]에서 내려받을 수 있다.
Bitnami의 로그인 화면은 아래와 같다(alt-→ 를 눌러서 들어간다). 로그인 화면에 설치된 GitLab의 IP와 기본 사용자 이름, 비밀번호가 써있다.
가상 머신 이미지나 원클릭 인스톨러를 내려받아 빨리 설치하고 환경에 맞게 후다닥 설정해서 사용할 수 있다. https://bitnami.com/stack/gitlab[]에서 내려받을 수 있다.(((bitnami)))
Bitnami의 로그인 화면은 아래와 같다(alt-→ 를 눌러서 들어간다). 로그인 화면에 설치된 GitLab의 IP와 기본 사용자 이름, 비밀번호가 써있다.

[[bitnami]]
//////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion book/04-git-server/sections/setting-up-server.asc
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,6 @@ For instance, you can restrict the Git commands that the server will accept or y
Run `git help shell` for more information on customizing the shell.(((git commands, help)))
//////////////////////////
비로소 Git은 제대로 동작하면서 개발자들이 쉘을 얻지 못하게 되었다.
위의 출력에서 볼 수 있듯이 `git` 계정의 홈 디렉터리에 git-shell-commands디렉터리를 만들어 `git-shell`의 동작을 조금 바꿀 수 있다.
위의 출력에서 볼 수 있듯이 `git` 계정의 홈 디렉토리에 git-shell-commands 디렉토리를 만들어 `git-shell`의 동작을 조금 바꿀 수 있다.
예를 들면 서버에서 사용할 수 있는 Git 명령어를 제한할 수 있다. 또 명령어를 실행했을 때 나오는 메시지도 변경 할 수 있다.
`git help shell` 명령어를 실행하면 Git 쉘을 꾸미는 데에 필요한 정보를 얻을 수 있다. (((git commands, help)))
Binary file removed book/05-distributed-git/images/centralized.png
Binary file not shown.
4 changes: 2 additions & 2 deletions book/05-distributed-git/sections/distributed-workflows.asc
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ A number of developers are nodes – consumers of that hub – and synchronize t

//////////////////////////
.Centralized workflow.
image::images/centralized.png[Centralized workflow.]
image::images/centralized_workflow.png[Centralized workflow.]
//////////////////////////
.중앙집중식 Workflow.
image::images/centralized.png[중앙집중식 Workflow.]
image::images/centralized_workflow.png[중앙집중식 Workflow.]

//////////////////////////
This means that if two developers clone from the hub and both make changes, the first developer to push their changes back up can do so with no problems.
Expand Down
2 changes: 1 addition & 1 deletion book/10-git-internals/sections/objects.asc
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ first commit
//////////////////////////
The format for a commit object is simple: it specifies the top-level tree for the snapshot of the project at that point; the author/committer information (which uses your `user.name` and `user.email` configuration settings and a timestamp); a blank line, and then the commit message.
//////////////////////////
커밋 개체의 형식은 간단하다. 해당 스냅샷에서 최상단 Tree를(역주 - 루트 디렉터리 같은) 하나 가리킨다. 그리고 `user.name`과 `user.email` 설정에서 가져온 Author/Committer 정보, 시간 정보, 그리고 한 라인 띄운 다음 커밋 메시지가 들어간다.
커밋 개체의 형식은 간단하다. 해당 스냅샷에서 최상단 Tree를(역주 - 루트 디렉토리 같은) 하나 가리킨다. 그리고 `user.name`과 `user.email` 설정에서 가져온 Author/Committer 정보, 시간 정보, 그리고 한 라인 띄운 다음 커밋 메시지가 들어간다.

//////////////////////////
Next, you'll write the other two commit objects, each referencing the commit that came directly before it:
Expand Down