v1.0

Commands

Usage

fdf [options]

Options

-r, --repo URL

Specify a git repository URL to fetch dotfiles from:

fdf -r https://github.com/user/dotfiles
fdf --repo git@github.com:user/dotfiles.git

-l, --local PATH

Use a local directory instead of cloning:

fdf -l ~/my-dotfiles
fdf --local /path/to/dotfiles

-d, --dry-run

Show what would be done without actually doing it:

fdf -r https://github.com/user/dotfiles -d

-f, --force

Overwrite existing files without backing up:

fdf -r https://github.com/user/dotfiles -f

-v, --verbose

Show detailed output:

fdf -r https://github.com/user/dotfiles -v

-h, --help

Show help message:

fdf -h

Examples

# basic usage
fdf -r https://github.com/jaysalw/dotfiles

# dry run first
fdf -r https://github.com/jaysalw/dotfiles --dry-run

# local dotfiles
fdf -l ~/dotfiles -v