Go to file
Danielle McLean 51e303a798
Add explict --enable-relative ./configure flag for using FindBin
2023-10-23 16:13:57 +11:00
automake remove automake files 2015-02-07 19:30:26 +00:00
bin add option --simulate on manpage 2021-04-14 22:08:38 -03:00
doc Mention the dotfiles option in the manual 2020-05-27 17:51:37 +02:00
docker Split perlbrew install-multiple into separate RUN cmd 2019-06-28 23:54:30 +01:00
lib Fix missing variable 2020-05-25 22:26:31 +02:00
t Add more tests for testing directories in dotfiles.t 2020-05-25 22:23:23 +02:00
tools Change -w to "use warnings;" in tools/get-version 2019-06-27 20:39:16 +01:00
.gitignore Switch to makeinfo --html --no-split for single-page HTML manual (#21) 2019-06-26 13:48:06 +01:00
.travis.yml Allow make to fail if missing modules for test dependencies 2019-06-28 20:28:22 +01:00
AUTHORS Improve the history of individual contributions and repositories 2019-06-27 20:44:48 +01:00
Build.PL Remove dependencies on Hash::Merge and Clone::Choose 2019-06-29 13:42:19 +01:00
COPYING Upgrade to GPL v3 and add headers to files (#44) 2019-06-27 20:37:40 +01:00
INSTALL.md Upgrade to GPL v3 and add headers to files (#44) 2019-06-27 20:37:40 +01:00
MANIFEST add tools/get-version to MANIFEST 2019-06-25 20:33:48 +01:00
MANIFEST.SKIP Switch to makeinfo --html --no-split for single-page HTML manual (#21) 2019-06-26 13:48:06 +01:00
META.json Prerelease v2.3.2-fixbug56727 2023-10-23 14:54:38 +11:00
META.yml Prerelease v2.3.2-fixbug56727 2023-10-23 14:54:38 +11:00
Makefile.am Add explict --enable-relative ./configure flag for using FindBin 2023-10-23 16:13:57 +11:00
NEWS NEWS: disable org-export-with-toc 2019-07-28 14:29:06 +01:00
README.md Improve the history of individual contributions and repositories (#49) 2019-06-27 20:49:44 +01:00
THANKS cli.t: test with the right Perl executable 2019-07-15 16:12:26 -04:00
TODO Upgrade to GPL v3 and add headers to files (#44) 2019-06-27 20:37:40 +01:00
aclocal.m4 Save upgraded aclocal.m4 produced by autoreconf -vi 2023-10-23 14:02:03 +11:00
build-docker.sh Make docker scripts use get-version 2019-06-28 17:08:48 +01:00
configure.ac Add explict --enable-relative ./configure flag for using FindBin 2023-10-23 16:13:57 +11:00
default-ignore-list default-ignore-list: ignore top-level README.*, LICENSE.*, and COPYING 2013-04-12 17:42:14 +01:00
test-docker.sh Make testing within Docker containers easier 2019-06-28 20:36:38 +01:00

README.md

Build Status Coverage Status

README for GNU Stow

This README describes GNU Stow. This is not the definitive documentation for Stow; for that, see the info manual.

Stow is a symlink farm manager program which takes distinct sets of software and/or data located in separate directories on the filesystem, and makes them all appear to be installed in a single directory tree.

Originally Stow was born to address the need to administer, upgrade, install, and remove files in independent software packages without confusing them with other files sharing the same file system space. For instance, many years ago it used to be common to compile programs such as Perl and Emacs from source and install them in /usr/local. By using Stow, /usr/local/bin could contain symlinks to files within /usr/local/stow/emacs/bin, /usr/local/stow/perl/bin etc., and likewise recursively for any other subdirectories such as .../share, .../man, and so on.

While this is useful for keeping track of system-wide and per-user installations of software built from source, in more recent times software packages are often managed by more sophisticated package management software such as rpm, dpkg, and Nix / GNU Guix, or language-native package managers such as Ruby's gem, Python's pip, Javascript's npm, and so on.

However Stow is still used not only for software package management, but also for other purposes, such as facilitating a more controlled approach to management of configuration files in the user's home directory, especially when coupled with version control systems.

Stow was inspired by Carnegie Mellon's Depot program, but is substantially simpler and safer. Whereas Depot required database files to keep things in sync, Stow stores no extra state between runs, so there's no danger (as there was in Depot) of mangling directories when file hierarchies don't match the database. Also unlike Depot, Stow will never delete any files, directories, or links that appear in a Stow directory (e.g., /usr/local/stow/emacs), so it's always possible to rebuild the target tree (e.g., /usr/local).

Stow is implemented as a combination of a Perl script providing a CLI interface, and a backend Perl module which does most of the work.

You can get the latest information about Stow from the home page:

http://www.gnu.org/software/stow/

License

Stow is free software, licensed under the GNU General Public License, which can be found in the file COPYING.

Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty.

Installation

See INSTALL.md for installation instructions.

Feedback

Please do send comments, questions, and constructive criticism. The mailing lists and any other communication channels are detailed on the above home page.

Brief history and authorship

Stow was inspired by Carnegie Mellon's "Depot" program, but is substantially simpler. Whereas Depot requires database files to keep things in sync, Stow stores no extra state between runs, so there's no danger (as there is in Depot) of mangling directories when file hierarchies don't match the database. Also unlike Depot, Stow will never delete any files, directories, or links that appear in a Stow directory (e.g., /usr/local/stow/emacs), so it's always possible to rebuild the target tree (e.g., /usr/local).

For a high-level overview of the contributions of the main developers over the years, see the AUTHORS file.

For a more detailed history, please see the ChangeLog file.