How To Install thunar-vcs-plugin on CentOS 7

In this tutorial we learn how to install thunar-vcs-plugin on CentOS 7. thunar-vcs-plugin is Version Contol System plugin for the Thunar filemanager

Introduction

In this tutorial we learn how to install thunar-vcs-plugin on CentOS 7.

What is thunar-vcs-plugin

The Thunar VCS Plugin adds Subversion and GIT actions to the context menu of Thunar. This gives a VCS integration to Thunar. The current features are * Most of the SVN actions copy, delete, export, import, lock, log, move, properties, relocate, resolved, revert, status, switch, unlock and update * Subversion info in file properties dialog * Basic GIT actions reset, stash and status This project was formerly known as Thunar SVN Plugin.

We can use yum or dnf to install thunar-vcs-plugin on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install thunar-vcs-plugin.

Install thunar-vcs-plugin on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install thunar-vcs-plugin using yum by running the following command:

sudo yum -y install thunar-vcs-plugin

Install thunar-vcs-plugin on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install thunar-vcs-plugin using dnf by running the following command:

sudo dnf -y install thunar-vcs-plugin

How To Uninstall thunar-vcs-plugin on CentOS 7

To uninstall only the thunar-vcs-plugin package we can use the following command:

sudo dnf remove thunar-vcs-plugin

References

Summary

In this tutorial we learn how to install thunar-vcs-plugin on CentOS 7 using yum and dnf.