﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AKazanbas%2Fsvn_tips</id>
	<title>利用者:Kazanbas/svn tips - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3AKazanbas%2Fsvn_tips"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Kazanbas/svn_tips&amp;action=history"/>
	<updated>2026-07-09T09:48:27Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Kazanbas/svn_tips&amp;diff=88231&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Kazanbas/svn_tips&amp;diff=88231&amp;oldid=prev"/>
		<updated>2018-06-28T18:41:49Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&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;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 18:41時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Kazanbas/svn_tips&amp;diff=88230&amp;oldid=prev</id>
		<title>2009年5月25日 (月) 05:48にwiki&gt;Chingachgookによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Kazanbas/svn_tips&amp;diff=88230&amp;oldid=prev"/>
		<updated>2009-05-25T05:48:31Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=svn tips=&lt;br /&gt;
This document can be useful for GSoC students and coders who'd like to refresh their memory on topics beyond svn basics.&lt;br /&gt;
&lt;br /&gt;
==Getting info==&lt;br /&gt;
What rev is my current working copy?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn info&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Since BASE is the keyword for working copy rev, this is equivalent:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn info -r BASE&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
What rev is the repository?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn info [rep_URL]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Merging with 2.5==&lt;br /&gt;
Thanks to Jaguarandi for helping me to figure this out. Merging without specifying revisions is evil... Merge should be done like so:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn merge -r [last_merge]:[current_rev] [2.5_URL]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
replace [...] with your own values. If it's your first merge, then last_merge is the rev when your branch was created. Use `svn log` to find that. current_rev you can find with `svn info [2.5_URL]`. Be sure to note down current_rev, you'll use it on next merge as the value of last_merge.&lt;br /&gt;
&lt;br /&gt;
Also, if you're merging from the top `blender` directory in your working copy, then you should append `blender` to 2.5_URL, i.e. https://svn.blender.org/svnroot/bf-blender/branches/blender2.5/blender&lt;br /&gt;
&lt;br /&gt;
==Undoing a commit==&lt;br /&gt;
A commit can be undone with `svn merge`, e.g. the following, along with a subsequent `svn commit`, will rollback to oldrev:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn merge -r [newrev]:[oldrev] [branch_URL]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or, if oldrev is just before newrev:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn merge -c [newrev] [branch_URL]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==URLs==&lt;br /&gt;
*Blender 2.5: https://svn.blender.org/svnroot/bf-blender/branches/blender2.5&lt;br /&gt;
*my branch: https://svn.blender.org/svnroot/bf-blender/branches/soc-2009-kazanbas/&lt;br /&gt;
&lt;br /&gt;
==Docs==&lt;br /&gt;
*[http://www.digilife.be/quickreferences/QRC/Subversion%20Quick%20Reference%20Card.pdf svn quick reference card]&lt;br /&gt;
*[http://svnbook.red-bean.com/ svn book 1.5]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Chingachgook</name></author>
		
	</entry>
</feed>