All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 vcsh(1) - manage and sync config files via git
2 ==============================================
6 `vcsh` clone <url> [<location>]
16 `vcsh` run <repo> <command>
20 `vcsh` <repo> <gitcommand>
25 `vcsh` allows you to have several `git`(1) repositories, all maintaining their
26 working trees in $HOME without clobbering each other. That, in turn, means you
27 can have one repository per config set (zsh, vim, ssh, etc), picking and
28 choosing which configs you want to use on which machine.
30 `vcsh` is using a technique called fake bare git repositories, keeping <$GIT_DIR>
31 in a different directory from <$GIT_WORK_TREE> which is pointed to <$HOME>.
33 The use of symlinks is not needed in this setup, making for a cleaner setup.
35 `vcsh` was designed with `mr`(1) in mind so you might want to install it alongside
36 vcsh. That being said, you can easily use `vcsh` without `mr` if you prefer.
38 A sample configuration for `vcsh` and `mr` can be found at
39 *https://github.com/RichiH/vcsh_mr_template*
44 Clone an existing repository.
50 Delete an existing repository.
53 Initialize an empty repository.
56 List all local vcsh repositories.
59 Run command with <$GIT_DIR> and <$GIT_WORK_TREE> set. Allows you to run any
60 and all commands without any restrictions. Use with care.
63 Seed .gitignore.d/<repo> from git ls-files.
65 * <repo> <gitcommand>:
66 Shortcut to run `vcsh` on a repo. Will prepend `git` to <command> by itself.
70 As noted earlier, `vcsh` will set <$GIT_DIR> and <$GIT_WORK_TREE> to the
71 appropriate values for fake bare git repositories.
73 ## SECURITY CONSIDERATIONS
75 `vcsh` allows you to execute arbitrary commands via `vcsh` run. For example,
76 speaking, adding a `sudo`(8) rule for `vcsh` would be pretty stupid.
80 None are known at this time, but reports and/or patches are more than welcome.
84 Like most people, the author initially made do with a single repository for all
85 config files, all of which were soft-linked into <$HOME>.
87 Martin F. Krafft aka madduck came up with the concept of fake bare git
90 vcsh was initally written by madduck. This version is a re-implementation from
91 scratch with a lot more features. madduck graciously agreed to let the author
96 This manpage and `vcsh` itself were written by Richard "RichiH" Hartmann.
100 Copyright 2011 Richard Hartmann <richih.mailinglist@gmail.com>
102 Licensed under the GNU GPL version 3 or higher.
104 https://github.com/RichiH/vcsh