@@ -12,7 +12,7 @@ usage: usage: git bulk [-g] ([-a]|[-w <ws-name>]) <git command>
1212
1313## DESCRIPTION
1414
15- git bulk adds convenien support for operations that you want to execute on multiple git repositories.
15+ git bulk adds convenient support for operations that you want to execute on multiple git repositories.
1616
1717- simply register workspaces that contain multiple git repos in their directory structure
1818- 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
2424
2525 Run a git command on all workspaces and their repositories.
2626
27- -g
27+ -g
2828
2929 Ask the user for confirmation on every execution.
3030
@@ -59,35 +59,35 @@ git bulk adds convenien support for operations that you want to execute on multi
5959## EXAMPLES
6060
6161 Register a workspace so that git bulk knows about it:
62-
62+
6363 $ git bulk --addworkspace personal ~/workspaces/personal
64-
64+
6565 Register the current directory as a workspace to git bulk:
66-
66+
6767 $ git bulk --addcurrent personal
68-
68+
6969 List all registered workspaces:
70-
70+
7171 $ git bulk --listall
72-
72+
7373 Run a git command on the repositories of the current workspace:
74-
74+
7575 $ git bulk fetch
7676
7777 Run a git command on the specified workspace and its repositories:
7878
7979 $ git bulk -w personal fetch
80-
81- Run a git command but ask user for confirmation on every execution (guarded mode):
82-
80+
81+ Run a git command but ask the user for confirmation on every execution (guarded mode):
82+
8383 $ git bulk -g fetch
84-
84+
8585 Remove a registered workspace:
86-
86+
8787 $ git bulk --removeworkspace personal
8888
8989 Remove all registered workspaces:
90-
90+
9191 $ git bulk --purge
9292
9393## AUTHOR
0 commit comments