Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #668

Merged
merged 1 commit into from
Jul 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions man/git-bulk.1
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -10,7 +10,7 @@
usage: usage: git bulk [\-g] ([\-a]|[\-w <ws\-name>]) <git command> git bulk \-\-addworkspace <ws\-name> <ws\-root\-directory> git bulk \-\-removeworkspace <ws\-name> git bulk \-\-addcurrent <ws\-name> 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
Expand Down Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions man/git-bulk.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions man/git-bulk.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ usage: usage: git bulk [-g] ([-a]|[-w &lt;ws-name&gt;]) &lt;git command&gt;

## 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`
Expand All @@ -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.

Expand Down Expand Up @@ -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
Expand Down