Gnus development mailing list
 help / color / mirror / Atom feed
From: Steinar Bang <sb@dod.no>
To: ding@gnus.org
Subject: Re: Beginning to use async.el to help Gnus' interactivity
Date: Wed, 18 Jul 2012 23:27:37 +0200	[thread overview]
Message-ID: <87mx2w4v5i.fsf@dod.no> (raw)
In-Reply-To: <87sjcolvqd.fsf@lifelogs.com>

>>>>> Ted Zlatanov <tzz@lifelogs.com>:

> Contact me off-list for write access.  Same for anyone who believes they
> need it.  I'd prefer more developers to more patches :)

One possibility would be to create a git branch, push it to a repo on
github, and then Ted can add that repo as a remote, fetch the branch
from that remote, and then merge and push.

It's less work than it sounds like.

For the branch pusher, it should be something like:
 1. if you've made the fixes against master, create a git branch for the
    fixes:
     git checkout jw-async-changes
 2. create a git repo on github (or your own git server or whatever),
    called for the purposes of these examples jw-gnus (this is the bit
    that takes most work, if you don't already have a github account or
    your own git server or a git account on a different provider)
 3. add that repo as a remote to the local gnus repo
     cd ~/git/gnus/
     git remote add jw-gnus https://github.com/jw/jw-gnus.git
 4. assuming you're already on the branch with the fixes push it to the
    new git repo:
     git push jw-gnus HEAD

Pulling and merging and pushing would then be:
 1. Add the new remote, and fetch its branches:
     git remote add jw-gnus https://github.com/jw/jw-gnus.git
     git fetch jw-gnus
 2. Merge the branch fetched from jw-gnus
     git merge jw-gnus/jw-async-changes
 3. Push the merge results:
     git push origin HEAD

The result will have the full git history of the changes, with original
committer (unlike a patch).






  reply	other threads:[~2012-07-18 21:27 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-08  5:31 John Wiegley
2012-07-09  5:22 ` Carson Chittom
2012-07-18 14:03 ` Ted Zlatanov
2012-07-18 18:58   ` John Wiegley
2012-07-18 19:23     ` Ted Zlatanov
2012-07-18 21:27       ` Steinar Bang [this message]
2012-07-19 13:36         ` Ted Zlatanov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87mx2w4v5i.fsf@dod.no \
    --to=sb@dod.no \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).