Merge lp:~ted-m-cox/serverguide/uniquebranchname into lp:serverguide/trunk

Proposed by Ted Cox
Status: Merged
Approved by: Doug Smythies
Approved revision: 252
Merged at revision: 253
Proposed branch: lp:~ted-m-cox/serverguide/uniquebranchname
Merge into: lp:serverguide/trunk
Diff against target: 79 lines (+26/-10)
3 files modified
serverguide/C/mail.xml (+1/-1)
serverguide/C/network-auth.xml (+6/-4)
serverguide/C/vcs.xml (+19/-5)
To merge this branch: bzr merge lp:~ted-m-cox/serverguide/uniquebranchname
Reviewer Review Type Date Requested Status
Doug Smythies Approve
Review via email: mp+261339@code.launchpad.net

Description of the change

Fixed some bugs and corrected some line wrapping.

To post a comment you must log in.
Revision history for this message
Doug Smythies (dsmythies) wrote :

O.K. Thanks.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'serverguide/C/mail.xml'
--- serverguide/C/mail.xml 2014-12-04 19:53:40 +0000
+++ serverguide/C/mail.xml 2015-06-08 03:12:49 +0000
@@ -572,7 +572,7 @@
572 <para>572 <para>
573 All the parameters you configure in the user interface are573 All the parameters you configure in the user interface are
574 stored in574 stored in
575 <filename>/etc/exim4/update-exim4.conf</filename> file.575 <filename>/etc/exim4/update-exim4.conf.conf</filename> file.
576 If you wish to re-configure, either you re-run the576 If you wish to re-configure, either you re-run the
577 configuration wizard or manually edit this file577 configuration wizard or manually edit this file
578 using your favorite editor. Once you configure, you can run578 using your favorite editor. Once you configure, you can run
579579
=== modified file 'serverguide/C/network-auth.xml'
--- serverguide/C/network-auth.xml 2015-02-26 20:29:30 +0000
+++ serverguide/C/network-auth.xml 2015-06-08 03:12:49 +0000
@@ -19,10 +19,12 @@
19 <title>OpenLDAP Server</title>19 <title>OpenLDAP Server</title>
2020
21 <para>21 <para>
22 The Lightweight Directory Access Protocol, or LDAP, is a protocol for querying and modifying a X.500-based directory service running22 The Lightweight Directory Access Protocol, or LDAP, is a protocol for
23 over TCP/IP. The current LDAP version is LDAPv3, as defined in <ulink url="http://tools.ietf.org/html/rfc4510">RFC4510</ulink>, and23 querying and modifying a X.500-based directory service running over TCP/IP.
24 the its implementation used in Ubuntu is from OpenLDAP.24 The current LDAP version is LDAPv3, as defined in <ulink
25 </para>25 url="http://tools.ietf.org/html/rfc4510">RFC4510</ulink>, and the
26 implementation in Ubuntu is OpenLDAP."
27 </para>
2628
27 <para>29 <para>
28 So the LDAP protocol accesses LDAP directories. Here are some key concepts and terms:30 So the LDAP protocol accesses LDAP directories. Here are some key concepts and terms:
2931
=== modified file 'serverguide/C/vcs.xml'
--- serverguide/C/vcs.xml 2015-02-24 21:33:24 +0000
+++ serverguide/C/vcs.xml 2015-06-08 03:12:49 +0000
@@ -9,8 +9,15 @@
9]>9]>
10 <chapter id="version-control-system" status="review">10 <chapter id="version-control-system" status="review">
11 <title>Version Control System</title>11 <title>Version Control System</title>
12 <para>12 <para>
13Version control is the art of managing changes to information. It has long been a critical tool for programmers, who typically spend their time making small changes to software and then undoing those changes the next day. But the usefulness of version control software extends far beyond the bounds of the software development world. Anywhere you can find people using computers to manage information that changes often, there is room for version control.</para>13 Version control is the art of managing changes to information. It
14 has long been a critical tool for programmers, who typically spend
15 their time making small changes to software and then undoing those
16 changes the next day. But the usefulness of version control software
17 extends far beyond the bounds of the software development world.
18 Anywhere you can find people using computers to manage information
19 that changes often, there is room for version control.
20 </para>
14 <sect1 id="bazaar" status="review">21 <sect1 id="bazaar" status="review">
15 <title>Bazaar</title> 22 <title>Bazaar</title>
16 <para>23 <para>
@@ -102,13 +109,20 @@
102 </sect2>109 </sect2>
103 <sect2 id="git-usage" status="review">110 <sect2 id="git-usage" status="review">
104 <title>Basic usage</title>111 <title>Basic usage</title>
105 <para>The above is already sufficient to use git in a distributed and secure way, provided users have access to the machine assuming the server role via SSH. On112 <para>
106 the server machine, creating a new repository can be done with</para>113 The above is already sufficient to use git in a distributed and
114 secure way, provided users have access to the machine assuming
115 the server role via SSH. On the server machine, creating a new
116 repository can be done with:
117 </para>
107<screen>118<screen>
108<command>git init --bare /path/to/repository</command>119<command>git init --bare /path/to/repository</command>
109</screen>120</screen>
110<note><para>This creates a bare repository, that cannot be used to edit files directly. If you would rather have a working copy of the contents of the repository on the server, ommit the <emphasis>--bare</emphasis> option.</para></note>121<note><para>This creates a bare repository, that cannot be used to edit files directly. If you would rather have a working copy of the contents of the repository on the server, ommit the <emphasis>--bare</emphasis> option.</para></note>
111 <para>Any client with ssh access to the machine can from then on clone the repository with</para>122 <para>
123 Any client with SSH access to the machine can then clone the
124 repository with:
125 </para>
112<screen>126<screen>
113<command>git clone username@hostname:/path/to/repository</command>127<command>git clone username@hostname:/path/to/repository</command>
114</screen>128</screen>

Subscribers

People subscribed via source and target branches