<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to OpenSourceTerms</title><link>https://sourceforge.net/p/mediacompanion/wiki/OpenSourceTerms/</link><description>Recent changes to OpenSourceTerms</description><atom:link href="https://sourceforge.net/p/mediacompanion/wiki/OpenSourceTerms/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 23 May 2017 02:08:34 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/mediacompanion/wiki/OpenSourceTerms/feed" rel="self" type="application/rss+xml"/><item><title>OpenSourceTerms modified by Rob</title><link>https://sourceforge.net/p/mediacompanion/wiki/OpenSourceTerms/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="open-source-terms"&gt;Open Source Terms&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Source Code&lt;/strong&gt; - source code is text written in a computer programming language.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Repository&lt;/strong&gt; - The repository contains the history of your project&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/Repository" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/Repository&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Working Directory&lt;/strong&gt; - The working directory is the top-level directory in a repository, in which the plain versions of files are available to read, edit and build.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/WorkingDirectory" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/WorkingDirectory&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Branch&lt;/strong&gt; - Branches occur if lines of development diverge. The term "branch" may thus refer to a "diverged line of development". For Mercurial, a "line of development" is a linear sequence of consecutive changesets. Combining a line of development into an existing one is called merging.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/Branch" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/Branch&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Change Set&lt;/strong&gt; - is a collection of changes to files in a source code repository&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/ChangeSet" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/ChangeSet&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Merging&lt;/strong&gt; - A merge combines two separate changesets in a repository into a merge changeset that describes how they combine. Merging is the process of joining points on two branches into one, usually at their current heads.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/Merge" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/Merge&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Tip&lt;/strong&gt; - "tip" is a built-in tag referring to the latest changeset created, either by "hg commit" or "hg pull". Use "hg tip" to see the tip's log entry.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/Tip" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/Tip&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Head&lt;/strong&gt; - A head is a changeset with no child changesets. The tip is the most recently changed head. Other heads are recent pulls into a repository that have not yet been merged.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/Head" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/Head&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fork&lt;/strong&gt; - a project fork happens when developers take a copy of source code and start independent development on it, creating a distinct piece of software. Often a fork is used to try a new feature &amp;amp; see if it pans out. If it does, it can be merged with the main program later on by a &lt;em&gt;Project Owner only&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/b/codeplex/archive/2010/03/05/codeplex-mercurial-support-for-forks.aspx" rel="nofollow"&gt;http://blogs.msdn.com/b/codeplex/archive/2010/03/05/codeplex-mercurial-support-for-forks.aspx&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Commit&lt;/strong&gt; - The act of creating a changeset is called a commit&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://mercurial.selenic.com/wiki/Commit" rel="nofollow"&gt;http://mercurial.selenic.com/wiki/Commit&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rob</dc:creator><pubDate>Tue, 23 May 2017 02:08:34 -0000</pubDate><guid>https://sourceforge.net802cb4125c8f482f8cf4a48a70e3fc8d73c88943</guid></item></channel></rss>