Aaron Stone wrote:

On Oct 6, 2008, at 2:02 PM, Paul J Stevens wrote:

Aaron Stone wrote:

I've just implemented the first bit of missing logic, and will post a
patch to the list shortly. Since I've been inactive for a while, Paul
should manage including this patch.

No problem of course, but:

Use git please! Since I'm the only one with svn write access, I can
really do without the overhead of pushing changes into svn all the time.

1) simple workflow to work on the main tree:

git clone git://git.dbmail.eu/paul/dbmail
cd dbmail; hack; build; test
git commit -a -m 'comment'
git format-patch --stdout origin |\
    git-send-email --to [EMAIL PROTECTED]


2) work on 2.2 requires an additional step after the clone and before
you hack:

git checkout --track dbmail_2_2 origin/dbmail_2_2

now you can work on 2.2, commit, and send out patches

to switch back to the mainline tree:

git checkout master

At the 2.2 step, I get this error:

[EMAIL PROTECTED] ~/codingprojects/dbmail $ git checkout --track dbmail_2_2 origin/dbmail_2_2
fatal: git checkout: --track and --no-track require -b

git checkout --track -b dbmail_2_2 origin/dbmail_2_2



--
  ________________________________________________________________
  Paul Stevens                                      paul at nfg.nl
  NET FACILITIES GROUP                     GPG/PGP: 1024D/11F8CD31
  The Netherlands________________________________http://www.nfg.nl
_______________________________________________
DBmail mailing list
[email protected]
https://mailman.fastxs.nl/mailman/listinfo/dbmail

Reply via email to