https://github.com/vpeti1/lvc
Literally Version Control
https://github.com/vpeti1/lvc
Last synced: about 2 months ago
JSON representation
Literally Version Control
- Host: GitHub
- URL: https://github.com/vpeti1/lvc
- Owner: VPeti1
- License: gpl-3.0
- Created: 2024-04-25T13:59:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-14T18:56:14.000Z (about 1 year ago)
- Last Synced: 2024-05-15T15:18:56.422Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 9.34 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LVC (Literally Version Control)
This is a simple version control system. It allows you to initialize a database, create versions, convert the latest version into a Git repository, and execute Git commands within a version's folder.
## Usage
### Initialize Database
lcv init
Initializes the database.
### Create Version
lcv create
Creates a new version. It copies all files and folders except `lvc.db` and folders starting with "Version " into a new version folder.
### Convert Version to Git Repository
lcv convert
Converts the specified version into a Git repository. Replace `` with the name of the version you want to convert.
### Execute Git Command in Version's Folder
lcv git []
Executes a Git command within the specified version's folder. Replace `` with the desired Git command. If `` is provided, the command is executed within that version's folder; otherwise, it defaults to the latest version.
## Note
- Run `init` before using any other command.
- The `git` command can be used with or without specifying a version name.
- The `convert` command converts a specific version into a Git repository.