]> git.madduck.net Git - code/vcsh.git/blob - README.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

README.md: Make intro less scary
[code/vcsh.git] / README.md
1 vcsh - Version Control System for $HOME - multiple Git repositories in $HOME
2
3
4 # Index
5
6 1. [30 second howto](#30-second-howto)
7 2. [Introduction](#introduction)
8 3. [Usage Exmaples](#usage-examples)
9 4. [Overview](#overview)
10 5. [Getting Started](#getting-started)
11 6. [Contact](#contact)
12
13
14 # 30 second howto
15
16 While it may appear that there's an overwhelming amount of documentation and
17 while the explanation of the concepts behind `vcsh` needs to touch a few gory
18 details of `git` internals, getting started with `vcsh` is extremely simple.
19
20 Let's say you want to version control your `vim` configuration:
21
22     vcsh init vim
23     vcsh vim add ~/.vimrc ~/.vim
24     vcsh vim commit -m 'Initial commit of my Vim configuration'
25     # optionally push your files to a remote
26     vcsh vim remote add origin <remote>
27     vcsh vim push -u origin master
28     # from now on you can push additional commits like this
29     vcsh vim push
30
31 If all that looks a _lot_ like standard `git`, that's no coincidence; it's
32 a design feature.
33
34
35 # Introduction
36
37 [vcsh][vcsh] allows you to maintain several Git repositories in one single
38 directory. They all maintain their working trees without clobbering each other
39 or interfering otherwise. By default, all Git repositories maintained via
40 `vcsh` store the actual files in `$HOME` but you can override this setting if
41 you want to.
42 All this means that you can have one repository per application or application
43 family, i.e. `zsh`, `vim`, `ssh`, etc. This, in turn, allows you to clone
44 custom sets of configurations onto different machines or even for different
45 users; picking and mixing which configurations you want to use where.
46 For example, you may not need to have your `mplayer` configuration on a server
47 or available to root and you may want to maintain different configuration for
48 `ssh` on your personal and your work machines.
49
50 A lot of modern UNIX-based systems offer pacakges for `vcsh`. In case yours
51 does not read `INSTALL.md` for install instructions or `PACKAGING.md` to create
52 a package, yourself. If you do end up packaging `vcsh` please let us know so we
53 can give you your own packaging branch in the upstream repository.
54
55 ## Talks
56
57 Some people found it useful to look at slides and videos explaining how `vcsh`
58 works instead of working through the docs.
59 All slides, videos, and further information can be found
60 [on the author's talk page][talks].
61
62
63 # Usage Examples
64
65 There are three different ways to interact with `vcsh` repositories; this
66 section will only show the simplest and easiest way.
67 Certain more advanced use cases require the other two ways, but don't worry
68 about this for now. If you never ewen bother playing with the other two
69 modes you will still be fine.
70 `vcsh enter` and `vcsh run`  will be covered in later sections.
71
72
73 ## Initialize a new repository "vim"
74
75     vcsh init vim
76
77 ## Clone an existing repository
78
79     vcsh clone <remote> <repository_name>
80
81 ## Add files to repository "vim"
82
83     vcsh vim add ~/.vimrc ~/.vim
84     vcsh vim commit -m 'Update Vim configuration'
85
86 ## Add a remote for repository "vim"
87
88     vcsh vim remote add origin <remote>
89     vcsh vim push origin master:master
90     vcsh vim branch --track master origin/master
91
92 ## Push to remote of repository "vim"
93
94     vcsh vim push
95
96 ## Pull from remote of repository "vim"
97
98     vcsh vim pull
99
100
101
102 # Overview
103
104 ## From zero to vcsh
105
106 You put a lot of effort into your configuration and want to both protect and
107 distribute this configuration.
108
109 Most people who decide to put their dotfiles under version control start with a
110 single repository in `$HOME`, adding all their dotfiles (and possibly more)
111 to it. This works, of course, but can become a nuisance as soon as you try to
112 manage more than one host.
113
114 The next logical step is to create single-purpose repositories in, for example,
115 `~/.dotfiles` and to create symbolic links into `$HOME`. This gives you the
116 flexibility to check out only certain repositories on different hosts. The
117 downsides of this approach are the necessary manual steps of cloning and
118 symlinking the individual repositories.
119
120 `vcsh` takes this approach one step further. It enables single-purpose
121 repositories and stores them in a hidden directory. However, it does not create
122 symbolic links in `$HOME`; it puts the actual files right into `$HOME`.
123
124 As `vcsh` allows you to put an arbitrary number of distinct repositories into
125 your `$HOME`, you will end up with a lot of repositories very quickly.
126
127 To manage both `vcsh` and other repositories, we suggest using [mr](mr). `mr`
128 takes care of pulling in and pushing out new data for a variety of version
129 control systems.
130
131 `vcsh` was designed with [mr][mr], a tool to manage Multiple Repositories, in
132 mind and the two integrate very nicely. `mr` has native support for `vcsh`
133 repositories and to `vcsh`, `mr` is just another configuration to track.
134 This make setting up any new machine a breeze. It takes literally less than
135 five minutes to go from standard installation to fully set up system
136
137 This is where `mr` comes in. While the use of `mr` is technically
138 optional, but it will be an integral part of the proposed system that follows.
139
140 ## Default Directory Layout
141
142 To illustrate, this is what a possible directory structure looks like.
143
144     $HOME
145         |-- $XDG_CONFIG_HOME (defaults to $HOME/.config)
146         |   |-- mr
147         |   |   |-- available.d
148         |   |   |   |-- zsh.vcsh
149         |   |   |   |-- gitconfigs.vcsh
150         |   |   |   |-- lftp.vcsh
151         |   |   |   |-- offlineimap.vcsh
152         |   |   |   |-- s3cmd.vcsh
153         |   |   |   |-- tmux.vcsh
154         |   |   |   |-- vim.vcsh
155         |   |   |   |-- vimperator.vcsh
156         |   |   |   `-- snippets.git
157         |   |   `-- config.d
158         |   |       |-- zsh.vcsh        -> ../available.d/zsh.vcsh
159         |   |       |-- gitconfigs.vcsh -> ../available.d/gitconfigs.vcsh
160         |   |       |-- tmux.vcsh       -> ../available.d/tmux.vcsh
161         |   |       `-- vim.vcsh        -> ../available.d/vim.vcsh
162         |   `-- vcsh
163         |       |-- config
164         |       `-- repo.d
165         |           |-- zsh.git  -----------+
166         |           |-- gitconfigs.git      |
167         |           |-- tmux.git            |
168         |           `-- vim.git             |
169         |-- [...]                           |
170         |-- .zshrc   <----------------------+
171         |-- .gitignore.d
172         |   `-- zsh
173         |-- .mrconfig
174         `-- .mrtrust
175
176 ### available.d
177
178 The files you see in $XDG\_CONFIG\_HOME/mr/available.d are mr configuration files
179 that contain the commands to manage (checkout, update etc.) a single
180 repository. vcsh repo configs end in .vcsh, git configs end in .git, etc. This
181 is optional and your preference. For example, this is what a zsh.vcsh
182 with read-only access to my zshrc repo looks likes. I.e. in this specific
183 example, push can not work as you will be using the author's repository. This
184 is for demonstration, only. Of course, you are more than welcome to clone from
185 this repository and fork your own.
186
187     [$XDG_CONFIG_HOME/vcsh/repo.d/zsh.git]
188     checkout = vcsh clone 'git://github.com/RichiH/zshrc.git' zsh
189     update   = vcsh run zsh git pull
190     push     = vcsh run zsh git push
191     status   = vcsh run zsh git status
192     gc       = vcsh run zsh git gc
193
194 ### config.d
195
196 $XDG\_CONFIG\_HOME/mr/available.d contains *all available* repositories. Only
197 files/links present in mr/config.d, however, will be used by mr. That means
198 that in this example, only the zsh, gitconfigs, tmux and vim repositories will
199 be checked out. A simple `mr update` run in $HOME will clone or update those
200 four repositories listed in config.d.
201
202 ### ~/.mrconfig
203
204 Finally, ~/.mrconfig will tie together all those single files which will allow
205 you to conveniently run `mr up` etc. to manage all repositories. It looks like
206 this:
207
208     [DEFAULT]
209     jobs = 5
210     # Use if your mr does not have vcsh support in mainline, yet
211     include = cat /usr/share/mr/vcsh
212     include = cat ${XDG_CONFIG_HOME:-$HOME/.config}/mr/config.d/*
213
214 ### repo.d
215
216 $XDG\_CONFIG\_HOME/vcsh/repo.d is the directory where all git repositories which
217 are under vcsh's control are located. Since their working trees are configured
218 to be in $HOME, the files contained in those repositories will be put in $HOME
219 directly.
220 Of course, [mr] [mr] will work with this layout if configured according to this
221 document (see above).
222
223 vcsh will check if any file it would want to create exists. If it exists, vcsh
224 will throw a warning and exit. Move away your old config and try again.
225 Optionally, merge your local and your global configs afterwards and push with
226 `vcsh run foo git push`.
227
228 ## Moving into a New Host
229
230 To illustrate further, the following steps could move your desired
231 configuration to a new host.
232
233 1. Clone the mr repository (containing available.d, config.d etc.); for
234    example: `vcsh clone git://github.com/RichiH/vcsh_mr_template.git mr`
235 2. Choose your repositories by linking them in config.d (or go with the default
236    you may have already configured by adding symlinks to git).
237 3. Make sure the line 'include = cat /usr/share/mr/vcsh' in .mrconfig points
238    to an existing file
239 4. Run mr to clone the repositories: `cd; mr update`.
240 5. Done.
241
242 Hopefully the above could help explain how this approach saves time by
243
244 1. making it easy to manage, clone and update a large number of repositories
245    (thanks to mr) and
246 2. making it unnecessary to create symbolic links in $HOME (thanks to vcsh).
247
248 If you want to give vcsh a try, follow the instructions below.
249
250
251 # Getting Started
252
253 Below, you will find a few different methods for setting up vcsh:
254
255 1. The Template Way
256 2. The Steal-from-Template Way
257 3. The Manual Way
258
259 ### The Template Way
260
261 #### Prerequisites
262
263 Make sure none of the following files and directories exist for your test
264 (user). If they do, move them away for now:
265
266 * ~/.gitignore.d
267 * ~/.mrconfig
268 * $XDG\_CONFIG\_HOME/mr/available.d/mr.vcsh
269 * $XDG\_CONFIG\_HOME/mr/available.d/zsh.vcsh
270 * $XDG\_CONFIG\_HOME/mr/config.d/mr.vcsh
271 * $XDG\_CONFIG\_HOME/vcsh/repo.d/mr.git/
272
273 All of the files are part of the template repository, the directory is where
274 the template will be stored.
275
276     apt-get install mr
277
278 #### Install vcsh
279
280 #### Debian
281
282 If you are using Debian Squeeze, you will need to enable backports
283
284     apt-get install vcsh
285
286 #### Arch Linux
287
288 vcsh is availabe via [AUR](https://aur.archlinux.org/packages.php?ID=54164)
289 and further documentation about the use of AUR is available
290 [on Arch's wiki](https://wiki.archlinux.org/index.php/Arch_User_Repository).
291
292     cd /var/abs/local/
293     wget https://aur.archlinux.org/packages/vc/vcsh-git/vcsh-git.tar.gz
294     tar xfz vcsh-git.tar.gz
295     cd vcsh-git
296     makepkg -s
297     pacman -U vcsh*.pkg.tar.xz
298
299 #### From source
300
301 If your version of mr is older than version 1.07, make sure to put
302
303     include = cat /usr/share/mr/vcsh
304
305 into your .mrconfig .
306
307     # choose a location for your checkout
308     cd $HOME
309     mkdir -p ~/work/git
310     git clone git://github.com/RichiH/vcsh.git
311     cd vcsh
312     ln -s vcsh /usr/local/bin                       # or add it to your PATH
313     cd
314
315 #### Clone the Template
316
317     vcsh clone git://github.com/RichiH/vcsh_mr_template.git mr
318
319 #### Enable Your Test Repository
320
321     mv ~/.zsh   ~/zsh.bak
322     mv ~/.zshrc ~/zshrc.bak
323     cd $XDG_CONFIG_HOME/mr/config.d/
324     ln -s ../available.d/zsh.vcsh .  # link, and thereby enable, the zsh repository
325     cd
326     mr up
327
328 #### Set Up Your Own Repositories
329
330 Now, it's time to edit the template config and fill it with your own remotes:
331
332     vim $XDG_CONFIG_HOME/mr/available.d/mr.vcsh
333     vim $XDG_CONFIG_HOME/mr/available.d/zsh.vcsh
334
335 And then create your own stuff:
336
337     vcsh init foo
338     vcsh run foo git add -f bar baz quux
339     vcsh run foo git remote add origin git://quuux
340     vcsh run foo git commit
341     vcsh run foo git push
342
343     cp $XDG_CONFIG_HOME/mr/available.d/mr.vcsh $XDG_CONFIG_HOME/mr/available.d/foo.vcsh
344     vim $XDG_CONFIG_HOME/mr/available.d/foo.vcsh # add your own repo
345
346 Done!
347
348 ### The Steal-from-Template Way
349
350 You're welcome to clone the example repository:
351
352     vcsh clone git://github.com/RichiH/vcsh_mr_template.git mr
353     # make sure 'include = cat /usr/share/mr/vcsh' points to an exiting file
354     vim .mrconfig
355
356 Look around in the clone. It should be reasonably simple to understand. If not,
357 poke me, RichiH, on Freenode (query) or OFTC (#vcs-home).
358
359
360 ### The Manual Way
361
362 This is how my old setup procedure looked like. Adapt it to your own style or
363 copy mine verbatim, either is fine.
364
365     # Create workspace
366     mkdir -p ~/work/git
367     cd !$
368
369     # Clone vcsh and make it available
370     git clone git://github.com/RichiH/vcsh.git vcsh
371     sudo ln -s ~/work/git/vcsh/vcsh /usr/bin/local
372     hash -r
373
374 Grab my mr config. see below for details on how I set this up
375
376     vcsh clone ssh://<remote>/mr.git
377     cd $XDG_CONFIG_HOME/mr/config.d/
378     ln -s ../available.d/* .
379
380
381 mr is used to actually retrieve configs, etc
382
383     ~ % cat ~/.mrconfig
384     [DEFAULT]
385     # adapt /usr/share/mr/vcsh to your system if needed
386     include = cat /usr/share/mr/vcsh
387     include = cat $XDG_CONFIG_HOME/mr/config.d/*
388     ~ % echo $XDG_CONFIG_HOME
389     /home/richih/.config
390     ~ % ls $XDG_CONFIG_HOME/mr/available.d # random selection of my repos
391     git-annex gitk.vcsh git.vcsh ikiwiki mr.vcsh reportbug.vcsh snippets.git wget.vcsh zsh.vcsh
392     ~ %
393     # then simply ln -s whatever you want on your local machine from
394     # $XDG_CONFIG_HOME/mr/available.d to $XDG_CONFIG_HOME/mr/config.d
395     ~ % cd
396     ~ % mr -j 5 up
397
398
399 # mr usage ; will be factored out & rewritten
400
401 ### Keeping repositories Up-to-Date
402
403 This is the beauty of it all. Once you are set up, just run:
404
405     mr up
406     mr push
407
408 Neat.
409
410 ### Making Changes
411
412 After you have made some changes, for which you would normally use `git add`
413 and `git commit`, use the vcsh wrapper (like above):
414
415     vcsh run foo git add -f bar baz quux
416     vcsh run foo git commit
417     vcsh run foo git push
418
419 By the way, you'll have to use -f/--force flag with git-add because all files
420 will be ignored by default. This is to show you only useful output when running
421 git-status. A fix for this problem is being worked on.
422
423 ### Using vcsh without mr
424
425 vcsh encourages you to use [mr][mr]. It helps you manage a large number of
426 repositories by running the necessary vcsh commands for you. You may choose not
427 to use mr, in which case you will have to run those commands manually or by
428 other means.
429
430
431 To initialize a new repository: `vcsh init zsh`
432
433 To clone a repository: `vcsh clone ssh://<remote>/zsh.git`
434
435 To interact with a repository, use the regular Git commands, but prepend them
436 with `vcsh run $repository_name`. For example:
437
438     vcsh run zsh git status
439     vcsh run zsh git add -f .zshrc
440     vcsh run zsh git commit
441
442 Obviously, without mr keeping repositories up-to-date, it will have to be done
443 manually. Alternatively, you could try something like this:
444
445     for repo in `vcsh list`; do
446         vcsh run $repo git pull;
447     done
448
449
450 # Contact
451
452 There are several ways to get in touch with the author and a small but committed
453 community around the general idea of version controlling your (digital) life.
454
455 * IRC: #vcs-home on irc.oftc.net
456
457 * Mailing list: [http://lists.madduck.net/listinfo/vcs-home][vcs-home-list]
458
459 * Pull requests or issues on [https://github.com/RichiH/vcsh][vcsh]
460
461
462 [mr]: http://kitenet.net/~joey/code/mr/
463 [talks]: http://richardhartmann.de/talks/
464 [vcsh]: https://github.com/RichiH/vcsh
465 [vcs-home-list]: http://lists.madduck.net/listinfo/vcs-home