gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, master, updated. f0345a29c71a3215adaa0e2


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. f0345a29c71a3215adaa0e2fdfefc0c439ea6561
Date: Mon, 09 Apr 2012 12:08:27 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  f0345a29c71a3215adaa0e2fdfefc0c439ea6561 (commit)
      from  cc2747c5e55da93a7791d2cd5127aaa6ca64d27e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=f0345a29c71a3215adaa0e2fdfefc0c439ea6561

commit f0345a29c71a3215adaa0e2fdfefc0c439ea6561
Author: Arnold D. Robbins <address@hidden>
Date:   Mon Apr 9 15:07:56 2012 +0300

    Add info on bzr to README.git.

diff --git a/README.git b/README.git
index 5907959..70840f3 100644
--- a/README.git
+++ b/README.git
@@ -20,10 +20,18 @@ Really.
 
 You can find gawk's GIT repository at Savannah
 https://savannah.gnu.org/git/?group=gawk
+
 Detailed instructions on using and contributing to gawk can also be
-found there 
-http://savannah.gnu.org/maintenance/UsingGit
+found at Savannah, see http://savannah.gnu.org/maintenance/UsingGit
+
+Thanks,
+
+Arnold Robbins
+Gawk Maintainer
 
+=====================================================================
+Here are some questions and answers related to using git compiled
+by several of the gawk maintainers.
 
 - How can I check out the GIT repository ?
 
@@ -235,8 +243,43 @@ You can inspect the log history file-wise but also 
directory-wise.
 
   git gc
 
+- I'm a devoted user of Bazaar, and don't want to switch to git.  Is
+  there any way for me to track Gawk development with bzr?
 
-Thanks,
+Yes, there is.  First, install the latest version of bzr (2.5.0 or
+later is required).  If it doesn't come with the bzr-git plugin,
+download and install it from https://launchpad.net/bzr-git.  You will
+also need dulwich, which is a Python implementation of the git
+protocol; get it from http://www.samba.org/~jelmer/dulwich/.
 
-Arnold Robbins
-Gawk Maintainer
+(To know whether you have bzr-git, type "bzr plugins".)
+
+Next, clone the Gawk git repository with this command:
+
+  bzr git-import git://git.savannah.gnu.org/gawk.git gawk
+
+This will create a directory called 'gawk' with meta-data of the
+repository, but without any working trees.  To checkout the files,
+chdir to that directory and type:
+
+  bzr checkout
+
+This will checkout the files for the default branch.  To see the list
+of branches, type
+
+  bzr branches
+
+To switch to another branch, type
+
+  bzr switch --force BRANCH
+
+where BRANCH is the name of the branch, e.g. 'xgawk'.  (The --force
+option is a workaround for an annoying misfeature in bzr 2.5.0, which
+will most probably be resolved in the near future.)
+
+To sync the current branch with upstream, type
+
+  bzr pull
+
+If you want to update several branches, "bzr switch" to each one in
+turn, followed by "bzr pull" to sync the branch.

-----------------------------------------------------------------------

Summary of changes:
 README.git |   53 ++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 48 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]