% cd perl-git
+First we need to create a temporary new branch for these changes and
+switch into it:
+
+ % git branch orange
+ % git checkout orange
+
Then make your changes. For example, if Leon Brocard changes his name
to Orange Brocard, we should change his name in the AUTHORS file:
description of your changes, and attach this patch file as an
attachment.
+If you want to delete your temporary branch, you may do so with:
+
+ % git checkout blead
+ % git branch -d orange
+ error: The branch 'orange' is not an ancestor of your current HEAD.
+ If you are sure you want to delete it, run 'git branch -D orange'.
+ % git branch -D orange
+ Deleted branch orange.