Introducing dotme: A Tiny CLI to Apply Dotfiles from Any Git Repo

When starting a new project, I often find myself copying over the same dotfiles β things like .vscode/
, .editorconfig
, or .prettierrc
. It's a small step, but it adds friction. So I built a CLI tool to automate it.
Meet dotme
β a simple, cross-platform command-line utility that applies dotfiles from any Git repository directly into your current working directory.
β¨ What Is dotme
?
dotme
is a small utility written in Go that clones a Git repository and copies only the files and folders from the root that start with a dot (.
) into your current folder.
π‘ Example use case: You maintain a personal dotfiles
repo on GitHub with folders like .vscode
, .editorconfig
, and .prettierrc
. With dotme
, you can apply those settings to a new project instantly:
dotme https://github.com/your-user/dotfiles
π§ Features
β Apply dotfiles from any Git repo with one command
π΅οΈ Only files and folders starting with a
.
are copiedπ Dotfolders are copied recursively, even if inner files donβt start with
.
π§Ό Temporary clone directories are cleaned up automatically
π₯οΈ Cross-platform (Linux, macOS, Windows)
π§Ύ Terminal output shows exactly what was copied or ignored
π¦ Installation
You can download the latest binary for your system from the releases page.
On Linux / macOS:
curl -L https://github.com/rsvinicius/dotme/releases/download/v0.1.0/dotme-linux-amd64 -o dotme
chmod +x dotme
sudo mv dotme /usr/local/bin/
On Windows:
Download
dotme-windows-amd64.exe
Rename it to
dotme.exe
(optional)Add it to your PATH
Or you can build from source:
git clone https://github.com/rsvinicius/dotme.git
cd dotme
go build -o dotme
βοΈ How It Works
Under the hood, dotme
does the following:
Clones the specified Git repo into a temp directory
Filters the root directory for files/folders starting with
.
Recursively copies those items into your current working directory
Prints a summary of actions (copied/ignored)
Cleans everything up
Thatβs it. No magic. No dependencies.
π Changelog
v0.1.0 β April 4, 2025
β Initial release
π οΈ CLI built using Cobra
π§Ή Temporary directory cleanup
π§ͺ Basic filtering and copying logic
π Complete documentation, license, contribution guide
π₯οΈ Works on Linux, macOS, and Windows
See full changelog β CHANGELOG.md
π€ Open Source & Contributions Welcome!
dotme
is open source under the MIT License. I'm maintaining the project in public and welcoming ideas, contributions, bug reports, and feedback!
β Well-documented
π Uses semantic versioning
π Has
CONTRIBUTING.md
,CHANGELOG.md
, andMAINTAINING.md
If you like the idea, Iβd love your help shaping it! Even opening an issue with feedback is already awesome. π
β GitHub: rsvinicius/dotme
π Thanks for Reading!
I built this tool to scratch my own itch, but I believe it can help others streamline their dev workflow too. Give it a try, and let me know what you think!
β Download dotme
β Star the repo if you find it useful β€οΈ
Subscribe to my newsletter
Read articles from Vinicius Rodrigues directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Vinicius Rodrigues
Vinicius Rodrigues
Specialized in building reliable, scalable applications with Java, Kotlin, Spring and Microservices Architecture