From 669c9180b481b59b227b5939f82612d936ba32f5 Mon Sep 17 00:00:00 2001 From: Isaac Mungai Date: Tue, 18 Jul 2017 14:45:04 -0400 Subject: [PATCH] Fix typos, remove trailing whitespace --- man/git-bulk.1 | 6 +++--- man/git-bulk.html | 6 +++--- man/git-bulk.md | 30 +++++++++++++++--------------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/man/git-bulk.1 b/man/git-bulk.1 index d91319c..8730d81 100644 --- a/man/git-bulk.1 +++ b/man/git-bulk.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-BULK" "1" "March 2017" "" "Git Extras" +.TH "GIT\-BULK" "1" "July 2017" "" "Git Extras" . .SH "NAME" \fBgit\-bulk\fR \- Run git commands on multiple repositories @@ -10,7 +10,7 @@ usage: usage: git bulk [\-g] ([\-a]|[\-w ]) git bulk \-\-addworkspace git bulk \-\-removeworkspace git bulk \-\-addcurrent git bulk \-\-purge git bulk \-\-listall . .SH "DESCRIPTION" -git bulk adds convenien support for operations that you want to execute on multiple git repositories\. +git bulk adds convenient support for operations that you want to execute on multiple git repositories\. . .IP "\(bu" 4 simply register workspaces that contain multiple git repos in their directory structure @@ -101,7 +101,7 @@ Run a git command on the specified workspace and its repositories: $ git bulk \-w personal fetch -Run a git command but ask user for confirmation on every execution (guarded mode): +Run a git command but ask the user for confirmation on every execution (guarded mode): $ git bulk \-g fetch diff --git a/man/git-bulk.html b/man/git-bulk.html index c60ef7b..d008673 100644 --- a/man/git-bulk.html +++ b/man/git-bulk.html @@ -85,7 +85,7 @@

DESCRIPTION

-

git bulk adds convenien support for operations that you want to execute on multiple git repositories.

+

git bulk adds convenient support for operations that you want to execute on multiple git repositories.

  • simply register workspaces that contain multiple git repos in their directory structure
  • @@ -154,7 +154,7 @@ Run a git command on the specified workspace and its repositories: $ git bulk -w personal fetch -Run a git command but ask user for confirmation on every execution (guarded mode): +Run a git command but ask the user for confirmation on every execution (guarded mode): $ git bulk -g fetch @@ -182,7 +182,7 @@ $ git bulk --purge
    1. -
    2. March 2017
    3. +
    4. July 2017
    5. git-bulk(1)
    diff --git a/man/git-bulk.md b/man/git-bulk.md index 51b9ede..834c585 100644 --- a/man/git-bulk.md +++ b/man/git-bulk.md @@ -12,7 +12,7 @@ usage: usage: git bulk [-g] ([-a]|[-w <ws-name>]) <git command> ## DESCRIPTION -git bulk adds convenien support for operations that you want to execute on multiple git repositories. +git bulk adds convenient support for operations that you want to execute on multiple git repositories. - simply register workspaces that contain multiple git repos in their directory structure - run any git command on the repositories of the registered workspaces in one command to `git bulk` @@ -24,7 +24,7 @@ git bulk adds convenien support for operations that you want to execute on multi Run a git command on all workspaces and their repositories. - -g + -g Ask the user for confirmation on every execution. @@ -59,35 +59,35 @@ git bulk adds convenien support for operations that you want to execute on multi ## EXAMPLES Register a workspace so that git bulk knows about it: - + $ git bulk --addworkspace personal ~/workspaces/personal - + Register the current directory as a workspace to git bulk: - + $ git bulk --addcurrent personal - + List all registered workspaces: - + $ git bulk --listall - + Run a git command on the repositories of the current workspace: - + $ git bulk fetch Run a git command on the specified workspace and its repositories: $ git bulk -w personal fetch - - Run a git command but ask user for confirmation on every execution (guarded mode): - + + Run a git command but ask the user for confirmation on every execution (guarded mode): + $ git bulk -g fetch - + Remove a registered workspace: - + $ git bulk --removeworkspace personal Remove all registered workspaces: - + $ git bulk --purge ## AUTHOR