From cc25f36f19a4468ab785e199afe0ed45bbe37414 Mon Sep 17 00:00:00 2001 From: Alexis Sukrieh Date: Tue, 21 Dec 2010 15:28:45 +0100 Subject: [PATCH] don't use git aliases --- lib/Dancer/Development.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Dancer/Development.pod b/lib/Dancer/Development.pod index 1e0c3758b..4526137ad 100644 --- a/lib/Dancer/Development.pod +++ b/lib/Dancer/Development.pod @@ -103,7 +103,7 @@ on your clone without worrying about different commits mixing together. To do that, first create a local branch to build your pull request: # you should be in devel here - git co -b pr/$name + git checkout -b pr/$name Now you have created a local branch named I where I<$name> is the name you want (it should describe the purpose of the pull request you're @@ -140,8 +140,8 @@ understand what was the mistake. If your pull-request is merged into I, then all you have to do is to remove your local and remote I branch: - git co devel - git br -D pr/$name + git checkout devel + git branch -D pr/$name git push origin :pr/$name And then, of course, you need to sync your local devel branch with the upstream: