Initial Oracle Deep Data Security lab kit
This commit is contained in:
23
docs/git-push.md
Normal file
23
docs/git-push.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Comandos Git Para Publicar
|
||||
|
||||
Execute a partir do diretório que contém `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 <URL_DO_SEU_REPOSITORIO>
|
||||
git push -u origin main
|
||||
```
|
||||
|
||||
Para evoluir:
|
||||
|
||||
```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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user