Raphael Hertzog <[EMAIL PROTECTED]> writes: > On Mon, 21 Apr 2008, Russ Allbery wrote:
>> git clone ssh://[EMAIL PROTECTED]/git/dbnpolicy/policy.git >> cd policy >> git checkout -b bug12345-rra > and "git checkout -b bug12345-rra master" if you're not in master > already. Ah, yes, thank you. >> # edit files >> # git add files >> git commit >> git push origin bug12345-rra # is this right? > Yes. Wow, my intuition about git commands is getting better. Excellent. >> # iterate until good >> git checkout -b master > No "-b". The branch master already exists. Ack, yes, sorry. That was a brain fade on my part. >> git branch -d bug12345-rra # how do I do this on the shared repo? > git push origin :bug12345-rra Excellent. Okay, I'll start working on using this, hopefully tonight and if not sometime tomorrow, and then capture this command stream for the wiki page as soon as I have a chance to write it. -- Russ Allbery ([EMAIL PROTECTED]) <http://www.eyrie.org/~eagle/> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

