Skip to content

Releases: bytware/whiteout

Whiteout v1.0.0

11 Sep 00:50

Choose a tag to compare

Whiteout v1.0.0 - Initial Release

🎉 Features

  • Git Filter Integration: Seamlessly integrates with Git clean/smudge filters to prevent secrets from being committed
  • Multiple Decoration Patterns:
    • Inline decorations: // @whiteout: replacement
    • Block decorations: @whiteout-start / @whiteout-end
    • Partial replacements: [[local||committed]]
  • Language Agnostic: Works with any programming language that supports comments
  • Local Storage: Securely stores local values in .whiteout/local.toml
  • Branch Support: Maintains different local values per Git branch
  • Easy Setup: Simple installation script and initialization commands

📦 Installation

# Clone and install
git clone https://github.com/bytware/whiteout.git
cd whiteout
./install.sh

🚀 Getting Started

# Initialize in your project
whiteout init

# Mark secrets in your code
API_KEY="secret123" // @whiteout: "placeholder"

# Commit safely - secrets stay local!
git add . && git commit -m "Safe commit"

📚 Documentation

See the README for full documentation and examples.


🤖 Generated with Claude Code