24 lines
527 B
Markdown
24 lines
527 B
Markdown
# Git Commands To Publish
|
|
|
|
Run these commands from the directory that contains `oracle-deep-data-security-lab`.
|
|
|
|
```bash
|
|
cd oracle-deep-data-security-lab
|
|
git init
|
|
git checkout -b main
|
|
git add .
|
|
git commit -m "Initial Oracle Deep Data Security lab kit"
|
|
git remote add origin <YOUR_REPOSITORY_URL>
|
|
git push -u origin main
|
|
```
|
|
|
|
For future changes:
|
|
|
|
```bash
|
|
git checkout -b feature/scenario-05-rag-vector-access
|
|
git add .
|
|
git commit -m "Add RAG vector access scenario"
|
|
git push -u origin feature/scenario-05-rag-vector-access
|
|
```
|
|
|