.. | ||
backupzshrc.plugin.zsh | ||
README.md |
Oh My Zsh Backup Plugin
This plugin provides a convenient way to back up your ~/.zshrc
file locally and to a GitHub repository. It automatically detects changes in the .zshrc
file, commits them with a timestamped message, and pushes changes to the specified GitHub repository. If you ever rm your zshrc, simply go to your Github repo and check it out.
Dependencies
- Locally installed git with a git config for pulling the repo url and username
- A repo in Github https://github.com/yourusername/oh-my-zsh-backup Example: https://github.com/yourusername/oh-my-zsh-backup
- Push privileges configured to the main/master origin branch
- Create directory privileges for this script - create "$HOME/projects/backups" manually otherwise
Installation
-
Clone this repository into your Oh My Zsh custom plugins directory:
git clone https://github.com/yourusername/oh-my-zsh-backup ~/.oh-my-zsh/custom/plugins/backup
-
Add
backup
to the plugins array in your~/.zshrc
file:plugins=(... backup)
-
Restart your terminal.
Usage
Simply open your terminal or source your ~/.zshrc
file, and the backup will be triggered automatically. Any changes detected in ~/.zshrc
will be backed up to the specified GitHub repository.
Configuration
GitHub Username
If your GitHub username is not already set globally, the plugin will prompt you to enter it the first time you run it. Alternatively, you can set it manually using:
git config --global user.name "Your Username"
Branch
By default, the plugin pushes changes to the branch specified GitHub repository is checked out to locally in the "$HOME/projects/backups" backup directory. You can change the target branch by checking out to a new branch in the backup directory.
Contributions
Contributions are welcome! If you encounter any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request on GitHub.
License
This plugin is licensed under the MIT License. See the LICENSE file for details.