You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Register a workspace so that `git bulk` knows about it (notice that <ws-root-directory> must be absolute path):
283
+
Register a workspace so that `git bulk` knows about it (it will be registered in your `.gitconfig`):
284
284
285
285
```bash
286
286
$ git bulk --addworkspace personal ~/workspaces/personal
287
287
```
288
+
289
+
Notice that `<ws-root-directory>` must be an absolute path (or an environment variable pointing to an absolute path).
290
+
In the case of a **single quoted environment variable**, it will be dereferenced at `git-bulk` runtime, suitable for dynamic workspaces (*e.g.*, defined in your `.bashrc`).
291
+
As an illustration:
292
+
293
+
```bash
294
+
$ git bulk --addworkspace personal '$PERSONAL_WORKSPACE'
295
+
```
296
+
288
297
With option `--from` the URL to a single repository or a file containing multiple URLs can be added and they will be cloned directly into the workspace. Suitable for the initial setup of a multi-repo project.
0 commit comments