How To Install vcsh on Fedora 36

In this tutorial we learn how to install vcsh in Fedora 36. vcsh is Version Control System for $HOME

Introduction

In this tutorial we learn how to install vcsh on Fedora 36.

What is vcsh

vcsh allows you to have several git repositories, all maintaining their working trees in $HOME without clobbering each other. That, in turn, means you can have one repository per config set (zsh, vim, ssh, etc), picking and choosing which configs you want to use on which machine.

We can use yum or dnf to install vcsh on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install vcsh.

Install vcsh on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install vcsh using dnf by running the following command:

sudo dnf -y install vcsh

Install vcsh on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install vcsh using yum by running the following command:

sudo yum -y install vcsh

How To Uninstall vcsh on Fedora 36

To uninstall only the vcsh package we can use the following command:

sudo dnf remove vcsh

vcsh Package Contents on Fedora 36

/usr/bin/vcsh
/usr/share/bash-completion
/usr/share/bash-completion/completions
/usr/share/bash-completion/completions/vcsh
/usr/share/doc/vcsh
/usr/share/doc/vcsh/INSTALL.md
/usr/share/doc/vcsh/README.md
/usr/share/doc/vcsh/changelog
/usr/share/doc/vcsh/error_codes.md
/usr/share/doc/vcsh/sample_hooks
/usr/share/doc/vcsh/sample_hooks/post-init-add-origin
/usr/share/doc/vcsh/sample_hooks/post-init-setup-mr
/usr/share/doc/vcsh/sample_hooks/post-merge-unclobber
/usr/share/doc/vcsh/sample_hooks/pre-merge-unclobber
/usr/share/licenses/vcsh
/usr/share/licenses/vcsh/CONTRIBUTORS
/usr/share/licenses/vcsh/LICENSE
/usr/share/man/man1/vcsh.1.gz
/usr/share/zsh
/usr/share/zsh/site-functions
/usr/share/zsh/site-functions/_vcsh

References

Summary

In this tutorial we learn how to install vcsh on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).