The term "porcelain" appears occasionally in the Git documentation. What does it mean?
|
"Porcelain" is the material from which toilets are usually made (and sometimes other fixtures such as washbasins). This is distinct from "plumbing" (the actual pipes and drains), where the porcelain provides a more user-friendly interface to the plumbing. Git uses this terminology in analogy, to separate the low-level commands that users don't usually need to use directly (the "plumbing") from the more user-friendly high level commands (the "porcelain"). |
|||||
|
|
More importantly, the term "porcelain" applies to high-level commands, with output:
That is key: if you script, you should use if possible plumbing commands, with stable outputs. Not porcelain commands.
See "How do I programmatically determine if there are uncommitted changes?" as an example to using plumbing commands instead of porcelain ones. Note: one (horrible) exception for this "porcelain" term is
The thread mentioned above details:
That reflects the need, for git users, to using porcelain commands in their scripts! As commented by william-berg, the same goes for
|
|||||||||||
|
|
|||
|
|
|
|||
|
|
|
Greg Hewgill's answer is exactly correct. Note that there are alternative porcelains available for Git, including Easy Git, yap, pyrite, and vng. Each is intended to make Git easier to learn/use for some part of the community. Links to all of these projects is on the Easy Git page: http://people.gnome.org/~newren/eg/. |
|||
|
|
|
Porcelain commands are designed for human consumption, as opposed to commands whose output is easy for computers to parse. |
|||
|
|