Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master tome rdp by Eric Sandall (5e40a15bb098a62c734d263e36280ba05b68f8b1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master tome rdp by Eric Sandall (5e40a15bb098a62c734d263e36280ba05b68f8b1)
  • Date: Mon, 5 Feb 2007 14:32:20 -0600

GIT changes to master tome rdp by Eric Sandall <sandalle AT sourcemage.org>:

GrimoireGuruHandbook | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+)

New commits:
commit 5e40a15bb098a62c734d263e36280ba05b68f8b1
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

Added information to GrimoireGuruHandbook about fetching remote branches

diff --git a/GrimoireGuruHandbook b/GrimoireGuruHandbook
index 0ed7513..21db476 100644
--- a/GrimoireGuruHandbook
+++ b/GrimoireGuruHandbook
@@ -197,6 +197,30 @@ stable-rc-0.6), you will use the followi
This will push your changes from my-stable-rc-0.6 into stable-rc-0.6
and then up to the server (origin).

+ Subsection XV: Fetching a new remote branch
+The need for this most commonly occurs when a new stable branch is released,
+but may be used for any other remote branches you wish to retrieve.
+
+Let's say that stable-0.6 was just released, and your current local branches
+look like this:
+$ git branch
+ devel
+* master
+ origin
+ stable-0.3
+ stable-0.4
+ stable-rc-0.4
+ stable-rc-0.5
+ stable-rc-0.6
+
+To grab the new stable-0.6 and stable-rc-0.7 (the next stable release
candidate)
+you would do the following:
+
+$ git fetch ssh://scm.sourcemage.org/smgl/grimoire.git stable-0.6:stable-0.6
+
+This tells git to fetch the remote branch named stable-0.6 (before the ":")
and
+call it stable-0.6 (after the ":") into the current git repository.
+
Section 5: Writing a spell
Subsection: PREPARE
Even before DETAILS, this file is sourced and cane be used to setup variables




Archive powered by MHonArc 2.6.24.

Top of Page