diff options
author | Yves Orton <demerphq@camel.booking.com> | 2008-12-20 14:38:32 +0100 |
---|---|---|
committer | Yves Orton <demerphq@camel.booking.com> | 2008-12-20 15:11:27 +0100 |
commit | a9b05323ead41c483da1fe0d5c3a90b2e4bc2c42 (patch) | |
tree | 1be65f733a32032dc183dc9e75ef185017948b8d /pod/perlrepository.pod | |
parent | e9040dfd2ecb1af73aed6d274a802c37856d7c74 (diff) | |
download | perl-a9b05323ead41c483da1fe0d5c3a90b2e4bc2c42.tar.gz |
use checkout -b and not the more verbose two step process
Diffstat (limited to 'pod/perlrepository.pod')
-rw-r--r-- | pod/perlrepository.pod | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod index 9b74c923aa..27b034292a 100644 --- a/pod/perlrepository.pod +++ b/pod/perlrepository.pod @@ -115,6 +115,10 @@ is up to date: Now that we have everything up to date, we need to create a temporary new branch for these changes and switch into it: + % git checkout -b orange + +which is the short form of + % git branch orange % git checkout orange @@ -183,8 +187,7 @@ you should try out the patch. First we need to create a temporary new branch for these changes and switch into it: - % git branch experimental - % git checkout experimental + % git checkout -b experimental Now we should apply the patch: |