Add initial GEMINI.md file

This commit is contained in:
themodrnhakr 2025-10-02 16:05:53 -05:00
commit 5f1451b6f0

19
GEMINI.md Normal file
View File

@ -0,0 +1,19 @@
# Project Overview
This directory appears to be a Jujutsu (jj) repository. Jujutsu is a Git-compatible DVCS (Distributed Version Control System) that aims to combine the best features of Git with a simpler, more powerful user interface.
## Key Files
* `.jj/`: This directory contains the internal data and configuration for the Jujutsu repository. It's where Jujutsu stores its commit graph, operation log, and other version control metadata.
## Usage
This directory is intended to be used with the `jj` command-line tool. You can perform various version control operations here, such as:
* `jj status`: Show the current state of the working copy.
* `jj log`: View the commit history.
* `jj branch`: Manage branches.
* `jj commit`: Record changes to the repository.
* `jj diff`: Show changes between commits or the working copy.
For more information on Jujutsu, refer to its official documentation.