Skip to content

Commit

Permalink
don't use git aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Sukrieh committed Dec 21, 2010
1 parent 8c60afd commit cc25f36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Dancer/Development.pod
Expand Up @@ -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<pr/$name> where I<$name> is the
name you want (it should describe the purpose of the pull request you're
Expand Down Expand Up @@ -140,8 +140,8 @@ understand what was the mistake.
If your pull-request is merged into I<devel>, then all you have to do is to
remove your local and remote I<pr/$name> 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:
Expand Down

0 comments on commit cc25f36

Please sign in to comment.