Skip to content

Commit

Permalink
Updated git push command to be faster (uses single process)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbeardsley committed Jul 19, 2012
1 parent fc17a6b commit 9e1aca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _posts/2012-04-26-clean-up-your-git.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ Delete branches on your origin
{% highlight bash %}
git branch -r --merged origin/master |
grep -v master |
sed "s| origin/||" |
xargs -I "BRANCH" git push origin :BRANCH
sed "s| origin/|:|" |
xargs git push origin
{% endhighlight %}

0 comments on commit 9e1aca8

Please sign in to comment.