Tutorial

How To Use Git to Manage your User Configuration Files on a Linux VPS

How To Use Git to Manage your User Configuration Files on a Linux VPS

Status: Deprecated

This article covers a version of Ubuntu that is no longer supported. If you are currently operate a server running Ubuntu 12.04, we highly recommend upgrading or migrating to a supported version of Ubuntu:

Reason: Ubuntu 12.04 reached end of life (EOL) on April 28, 2017 and no longer receives security patches or updates. This guide is no longer maintained.

See Instead: This guide might still be useful as a reference, but may not work on other Ubuntu releases. If available, we strongly recommend using a guide written for the version of Ubuntu you are using. You can use the search functionality at the top of the page to find a more recent version.

Introduction


As you work with Linux machines, you will likely begin to customize your environment quite heavily. Some commonly used applications like text editors are so configurable, that unmodified versions can seem like entirely different programs.

It can take quite a bit of work to tweak your configurations, and often you will make minor edits as your usage changes over time. This can be a lot to handle on just a single computer, but when you want to synchronize your settings across multiple machines, things can quickly get complicated and unwieldy.

In this article, we will discuss one approach to dealing with complex configuration files that you wish to share across machines. We will use git version control to manage our important files. We can then upload these to a remote repository and then pull those files down to other computers.

We will be demonstrating these ideas on an Ubuntu 12.04 machine, but due to the nature of git and the configuration files we will be using, any reasonably up-to-date Linux distribution should work in a similar way.

The Basic Idea


Before we jump into the actual steps that will implement this idea, let’s talk about what we’re actually going to set up.

We will assume that you have one computer with some heavy configuration already in progress. This is the system that we will use to build our git repository. We will add the appropriate files to the repo, and then push it to our remote git repository.

The remote git repository will be a place where we can store our configuration data. It should be accessible to all of the other machines that we might want to place our configuration files on. Some people feel comfortable using a public space like GitHub to host their files, but this comes with the risk of accidentally pushing sensitive data to a world-readable location.

In our guide, we will instead use GitLab, a self-hosting git repository solution that you can install and use on your own machines. DigitalOcean provides a one-click GitLab installation image for you to create a preconfigured GitLab VPS. We will also cover how to install GitLab by yourself if you wish to go that route.

After our configuration files are in our remote git repository, we can then pull the files onto new systems to implement our settings.

What Type of Files Should We Commit?


While there are many different levels of customization that you do with new systems, some types of files and customizations are more appropriate for this type of a solution than others.

Files that have values that are heavily system-dependant probably should be handled either manually or using some other method, like a configuration management system like Chef, Puppet, or Ansible.

If the customizations you are doing are less user preferences and closer to system operating details, then using git probably won’t help you much. You’ll have to change most of the values to match the client system anyways.

Configuration for tools and user environment files work the best for this type of a solution. Things like customizations for vim, emacs, screen, tmux, bash, etc. are great candidates for this type of configuration.

Generally, a good rule of thumb is that any “dotfile” (hidden configuration file located within your home directory) that does not contain sensitive or heavily machine-dependent settings can be used. If you are using a self-hosted alternative to GitHub, like GitLab, you can include files with sensitive information at your own risk.

Setting Up your Seed Machine


We will refer to the computer that already has modified configuration files that you’d like to use as the “seed” machine. This is going to be the place where our configuration files originate.

We need to make sure that we have git installed, so that we can actually go about implementing our configuration syncing. Install git from the repositories provided by your distribution. For Ubuntu, these commands should work:

sudo apt-get update
sudo apt-get install git

After we have installed git, we should set some configuration details that will keep our commit messages clean. Substitute your own name and email address in the following commands:

<pre> git config --global user.name “<span class=“highlight”>your name</span>” git config --global user.email “<span class=“highlight”>email@domain.com</span>” </pre>

At this point, we have a number of divergent approaches that we can take. Let me explain each one in turn, as this choice will affect how we proceed later on.

Using your Entire Home Directory as a Git Repo


Perhaps the simplest approach that we have is to simply initialize a git repository within our home directory. This approach has the advantage of being very simple and straight forward, but can get messy as things go on.

We can begin this method by typing:

cd ~
git init

A git repository will be created within our home directory. If we see the state of our files, we can see that there are a lot of files marked as “untracked”:

git status

# On branch master
#
# Initial commit
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#	.bash_history
#	.bash_logout
#	.bashrc
#	.gitconfig
#	.profile
#	.screenrc
#	.ssh/
#	.viminfo
#	.vimrc
nothing added to commit but untracked files present (use "git add" to track)

It is good that git sees all of our files, but it will be quite a pain as we use this computer more if the majority of the files are considered “untracked” and create a long list like this every time we look at this.

If that doesn’t bother you, you can simply add the files that you would like to the git repo, like this:

git add .bashrc
git add .vimrc
. . .

If you’d rather keep your git status clean, so that it provides only information that you might consider useful, you can instead tell git to ignore all files by default, and we can specifically create exceptions for the files we want to check into version control.

We can do this by creating a .gitignore file in our directory that has a wildcard that will match everything:

echo "*" > .gitignore

If we do this and check the status of our repo, you will see that nothing is there to track:

git status

# On branch master
#
# Initial commit
#
nothing to commit (create/copy files and use "git add" to track)

In this scenario, you will then have to force the files that you want to add by using the -f flag to add:

git add -f .bashrc
git add -f .vimrc
. . .

Either way, you need to commit your changes when you are finished:

git commit -m "Initial configuration commit"

Creating a Configuration Directory to Store Files


An alternative approach to creating a git repository that encompasses your entire home directory is to create a separate directory specifically for tracking these files.

For the purposes of this tutorial, we will call this directory configs:

cd ~
mkdir configs

We can enter this directory and then initialize a git repository in here instead of the home directory:

cd configs
git init

Now, we have a git repository, but there are not any files inside. We want to put our files into this directory so that they can be committed with our version control system, but we also want our files available in the home directory so that programs can find them correctly.

The solution that accomplishes both of these objectives is to copy the files into this directory, and then create system links back into the main directory.

For each file, this will look like this:

mv ~/.vimrc .
ln -s .vimrc ~/
mv ~/.bashrc .
ls -s .vimrc ~/
. . .

We now have all of our actual configuration files in our ~/configs directory, and symbolic links to these files in our home directory.

This may sound more complicated, but it simplifies the git side of things quite a bit. To add all of the files, we can simply type:

git add .

And then we can commit them like this:

git commit -m "Initial configuration commit"

This approach simplifies the git side, while perhaps making the actual management of your files a bit more complex.

Separating the Git Directory from the Working Tree


A third approach attempts to address some of the problems inherent with trying to version the home directory itself. It separates the actual git repository from the place where it pulls the files.

This can be useful if you like the idea of versioning your home directory directly, but you find that it complicates things with having other git repositories.

Basically, when you initialize a git repo, by default, the current directory is considered the working directory where checkouts will place and modify files. A git repo called .git will be created in this directory.

However, we can force git to use a separate working directory.

We can start much like we did in the last alternative by creating a separate directory for our configuration:

cd ~
mkdir configs

Again, move inside the directory and then initialize the git repository:

cd configs
git init

To show you how things will change, let’s see what git status says right now:

git status

# On branch master
#
# Initial commit
#
nothing to commit (create/copy files and use "git add" to track)

Currently, the working directory is the ~/configs directory where the repo is located. There are no files here, so it shows up as empty with nothing to commit.

Now, we do things a bit differently. We will start by specifying a different working directory using the core.worktree git configuration option:

git config core.worktree "../../"

What this does is establish the working directory relative to the path of the .git directory. The first ../ refers to the ~/configs directory, and the second one points us one step beyond that to our home directory.

Basically, we’ve told git “keep the repository here, but the files you are managing are two levels above the repo”.

To see what has changed, we can check the status again:

git status

# On branch master
#
# Initial commit
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#       ../.bash_history
#       ../.bash_logout
#       ../.bashrc
#       ../.gitconfig
#       ../.lesshst
#       ../.profile
#       ../.screenrc
#       ../.ssh/
#       ../.viminfo
#       ../.vimrc
nothing added to commit but untracked files present (use "git add" to track)

You can see that git is now referencing the files in the home directory.

We can now add files by referring to them in relationship to the home directory:

git add ~/.vimrc
git add ~/.screenrc
git add ~/.bashrc
. . .

We can then commit like this:

git commit -m "Initial configuration commit"

In the directory, in order for git to put all of the pieces back together if you have to pull information later, you’ll have to put a /.git file:

cd ~
nano .git

Inside, all you need is a line that directs git to the repo file:

<pre> gitdir: /home/<span class=“highlight”>your_user</span>/configs/.git </pre>

This will allow everything to work smoothly.

Setting up the Remote Git Server


Depending on your needs, there are a variety of options for setting up a remote repository to house your files.

An obvious choice would be to push your configuration repo up to GitHub. This might be a great approach for some people, but keep in mind that it does present the possibility of accidentally exposing sensitive data.

If you want to avoid this by pushing to your own private git repository, GitLab is a great choice.

On DigitalOcean, you can use the one-click GitLab image to hit the ground running.

Another option is to install GitLab by yourself. This guide will walk you through how to install and configure GitLab on your own server.

Regardless of how you get it set up, you’ll have to create a new empty repository to act as your remote target.

Once you create an empty repository, GitHub or GitLab will give you a page with commands on how to get your configuration files into the repository. You will most likely want to click the button to switch to HTTP commands instead of SSH unless you have already added SSH keys.

It will look something like this:

GitLab existing repo

Use the command suggestions to get your configuration into the remote repository. Most likely, it will be something along the lines of:

<pre> cd configs # <span class=“highlight”>or “cd ~” if you are using your home directory</span> git remote add origin http://<span class=“highlight”>git_lab_ip</span>/<span class=“highlight”>your_gitlab_user</span>/<span class=“highlight”>repo_name</span>.git git push -u origin master </pre>

This will push your configuration into the GitLab repo.

Pulling Configuration from the Remote Repo


Now that we have our configuration files in our remote repo, we can pull them down from other machines. We will refer to the server we want to add our configuration files to as our “target” machine.

On the target machine, make sure that you have git installed. On Ubuntu, this will again be accomplished like this:

sudo apt-get update
sudo apt-get install git

Once you have this installed, you should set your basic config variables again:

<pre> git config --global user.name “<span class=“highlight”>your name</span>” git config --global user.email “<span class=“highlight”>email@domain.com</span>” </pre>

The next step depends again on how you want this machine to interact with the git repo files.

Put Home Directory Under Version Control


If you want to have the entire home directory under git version control, you should start an empty git repo there:

cd ~
git init

From here, we can add the GitHub or GitLab repo as the origin of this repo:

<pre> git remote add origin http://<span class=“highlight”>git_lab_ip</span>/<span class=“highlight”>your_gitlab_user</span>/<span class=“highlight”>repo_name</span>.git </pre>

After this point, we will need to do something a bit different if we already have files on this machine that may come into conflict with what is in our repo. For instance, a ~/.bashrc file is usually included by default for each user.

One option would be to delete or move each file that conflicts with our repo files. However, we can also just tell git to overwrite all conflicting files with the remote versions.

We can do this by first fetching the remote files, and then telling git to reset to the most recent commit, which should be our remote versions:

git fetch --all
git reset --hard origin/master

This should bring all of the remote files into our new machine.

You can easily modify files on this machine and push them back to the remote repo as well:

echo "# a comment" >> .bashrc
git add .bashrc
git commit -m "test"
git push origin master

Use a Separate Configuration Directory


If you prefer to use a separate directory to hold the actual configuration files and you just want to link those files into your home directory, you can clone the repository instead.

We just need the URL that refers to our remote repository again. This time, we will just use clone instead of initializing a new git repository:

<pre> git clone http://<span class=“highlight”>git_lab_ip</span>/<span class=“highlight”>your_gitlab_user</span>/<span class=“highlight”>configs</span>.git </pre>

Now, we can move into our newly cloned directory:

cd configs

This will have all of our configuration files. We can then link them individually into our home directory:

ln -s .vimrc ~/
ln -s .screenrc ~/

Again, you might need to move or delete files that conflict with the new files:

rm ~/.bashrc
ln -s .bashrc ~/

This is a more manual process, but you can have more fine-grained control over what files you want to be active on this computer.

Implement Separate Git Repo and Directory


To implement the separated working directory and repo setup that we talked about for the seed machine, we can again clone the repo.

The difference with this method is that since we want the repository to unload its files directly into our home directory, we won’t checkout any files at the time of the clone:

<pre> git clone --no-checkout http://<span class=“highlight”>git_lab_ip</span>/<span class=“highlight”>your_gitlab_user</span>/<span class=“highlight”>configs</span>.git </pre>

Now, we need to tell git that we want to unpack our files into the directory located two tiers above the ~/configs/.git directory (the home directory):

cd configs
git config core.worktree "../../"

Now, we can explicitly checkout the files. Again, we need to force git to overwrite our current files. We can do that by “resetting” back to the state that the files were in from our remote repo:

git reset --hard origin/master

Your configuration files should now be available on your new computer.

Conclusion


You should now have a few options for how to keep your personal configuration files in version control. By continually committing changes to your configuration files to your remote repository, you should be able to recreate the most important parts of your environment on remote machines quickly and effortlessly.

<div class=“author”>By Justin Ellingwood</div>

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
5 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Great tutorial, actually one superior extension is using GitLab CI to automatically pull new file versions.

Git to hosts See, when someone do change to config file GitLab CI will do:

  1. deploy new committed version to specific host(s)
  2. restart affected services

Is there a way to achieve something similar but with automatic file syncing over Dropbox (while still having config files in the home directory)?

You could add exceptions in .gitignore. So you could have

*

at the top, but then under it have

!.config

Then everything in .config will not be ignored by git.

https://github.com/joeyh/etckeeper already does the hard work for you, you just need to install and initialize it.

awesome, awesome tutorial.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel