<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://deltanine.net/mw/index.php?action=history&amp;feed=atom&amp;title=Bazaar_Guide_bzr</id>
	<title>Bazaar Guide bzr - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://deltanine.net/mw/index.php?action=history&amp;feed=atom&amp;title=Bazaar_Guide_bzr"/>
	<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Bazaar_Guide_bzr&amp;action=history"/>
	<updated>2026-04-27T19:23:22Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://deltanine.net/mw/index.php?title=Bazaar_Guide_bzr&amp;diff=99&amp;oldid=prev</id>
		<title>Chris: 1 revision</title>
		<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Bazaar_Guide_bzr&amp;diff=99&amp;oldid=prev"/>
		<updated>2013-07-25T08:08:00Z</updated>

		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 08:08, 25 July 2013&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Chris</name></author>
		
	</entry>
	<entry>
		<id>https://deltanine.net/mw/index.php?title=Bazaar_Guide_bzr&amp;diff=98&amp;oldid=prev</id>
		<title>60.234.148.95: /* To create a linked copy to the current directory */</title>
		<link rel="alternate" type="text/html" href="https://deltanine.net/mw/index.php?title=Bazaar_Guide_bzr&amp;diff=98&amp;oldid=prev"/>
		<updated>2010-07-21T20:19:26Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;To create a linked copy to the current directory&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Centralized Trunk==&lt;br /&gt;
This method requires a server to hold the truck. &lt;br /&gt;
===Setup the server for the trunk===&lt;br /&gt;
====Set up the branch====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr init-repo --no-trees sftp://chris@orac/media/raid/Development/bzr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Set up the Repository====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr init sftp://chris@orac/media/raid/Development/bzr/cf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Checkout the Repository====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr checkout sftp://chris@orac/media/raid/Development/bzr/cf .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Add Files and Commit====&lt;br /&gt;
Now add your files to this directory then commit them to synchronise with the server&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr add&lt;br /&gt;
bzr commit -m &amp;quot;Initial Load&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Usage===&lt;br /&gt;
Once it is set up on the clients all you need to do is:&lt;br /&gt;
====To create a linked copy to the current directory====&lt;br /&gt;
Only do this once&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr checkout sftp://chris@orac/media/raid/Development/bzr/cf .&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Commiting work====&lt;br /&gt;
Once this has been done edit as normal,once you are happy with the changes &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr commit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
will commit changes to the client and server automatically.&lt;br /&gt;
====Latest Version from Server====&lt;br /&gt;
To ensure you have the latest version from the server &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr update&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===List commits===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr log&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===Revert to a previous commit===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr revert -r 4&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where 4 is the version number you got from the bzr log&lt;br /&gt;
&lt;br /&gt;
===Problems===&lt;br /&gt;
If you get Conflict Detected type error try&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
bzr resolve --all&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>60.234.148.95</name></author>
		
	</entry>
</feed>