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/10-git-internals/sections/plumbing-porcelain.asc
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
[[_plumbing_porcelain]]
2
2
=== Plumbing and Porcelain
3
3
4
-
This book covers how to use Git with 30 or so verbs such as `checkout`, `branch`, `remote`, and so on.
5
-
But because Git was initially a toolkit for a VCS rather than a full user-friendly VCS, it has a bunch of verbs that do low-level work and were designed to be chained together UNIX-style or called from scripts.
6
-
These commands are generally referred to as ``plumbing'' commands, and the more user-friendly commands are called ``porcelain'' commands.
4
+
This book covers primarily how to use Git with 30 or so subcommands such as `checkout`, `branch`, `remote`, and so on.
5
+
But because Git was initially a toolkit for a version control system rather than a full user-friendly VCS, it has a number of subcommands that do low-level work and were designed to be chained together UNIX-style or called from scripts.
6
+
These commands are generally referred to as Git's ``plumbing'' commands, while the more user-friendly commands are called ``porcelain'' commands.
7
7
8
-
The book's first nine chapters deal almost exclusively with porcelain commands.
8
+
As you will have have noticed by now, this book's first nine chapters deal almost exclusively with porcelain commands.
9
9
But in this chapter, you'll be dealing mostly with the lower-level plumbing commands, because they give you access to the inner workings of Git, and help demonstrate how and why Git does what it does.
10
10
Many of these commands aren't meant to be used manually on the command line, but rather to be used as building blocks for new tools and custom scripts.
11
11
12
12
When you run `git init` in a new or existing directory, Git creates the `.git` directory, which is where almost everything that Git stores and manipulates is located.
13
13
If you want to back up or clone your repository, copying this single directory elsewhere gives you nearly everything you need.
14
-
This entire chapter basically deals with the stuff in this directory.
15
-
Here's what it looks like:
14
+
This entire chapter basically deals with what you can see in this directory.
15
+
Here's what a newly-initialized `.git` directory typically looks like:
16
16
17
17
[source,console]
18
18
----
@@ -26,7 +26,7 @@ objects/
26
26
refs/
27
27
----
28
28
29
-
You may see some other files in there, but this is a fresh `git init` repository – it's what you see by default.
29
+
Depending on your version of Git, you may see some additional content there, but this is a fresh `git init` repository -- it's what you see by default.
30
30
The `description` file is used only by the GitWeb program, so don't worry about it.
31
31
The `config` file contains your project-specific configuration options, and the `info` directory keeps a global exclude file (((excludes))) for ignored patterns that you don't want to track in a `.gitignore` file.
32
32
The `hooks` directory contains your client- or server-side hook scripts, which are discussed in detail in <<_git_hooks>>.
0 commit comments