myvcs
v1.1.2
Published
A simple version control system with S3 cloud storage
Downloads
8
Maintainers
Readme
MyVCS
A simple version control system with S3 cloud storage.
Installation
npm install -g myvcsSetup
Create a .env file in your project:
AWS_ACCESS_KEY_ID=... AWS_SECRET_ACCESS_KEY=... S3_BUCKET=... MY_NAMESPACE=...
Then run:
myvcs init
Initialize a repository:
```bash
myvcs init
myvcs config set username your-username
myvcs config set email your-emailUsage
# Add files
myvcs add file.txt
myvcs add . # Add all files
# Commit
myvcs commit "Your commit message"
# Push to cloud
myvcs push
# Pull from cloud
myvcs pull
# View commits
myvcs list commits
# Revert to a commit
myvcs revert <commitID>License
MIT
