Git embedded in Telosys
Since version 4.3.0 Telosys-CLI is able to execute Git commands by itself, even if no Git tool is intalled on your workstation.
Git is embedded in Telosys-CLI in order to simplify Git usage to clone, init and publish models and bundles repositories.
git is the command to execute git operations.
For help with Git commands, type ? git in Telosys-CLI .
All git commands are designed to work with Telosys models and bundles:
Commands ending with "m" are for models
Commands ending with "b" are for bundles
Clone an existing Git repository
This command allows to clone a repository from the current "depot" or from a specific URL.
Clone a model repository with "clonem"
🔹 git clonem model-name-in-depot |or| any-repo-url
Examples:
clone by name:
git clonem carsclone by URL:
git clonem https://github.com/telosys-models-v4-3/employees
Clone a bundle repository with "cloneb"
🔹 git cloneb bundle-name-in-depot |or| any-repo-url
Examples:
clone by name:
git cloneb front-angularclone by URL:
git cloneb https://github.com/telosys-templates-v4-3/java-jpa-entities
Init a new Git repository
After installing or creating a new model or bundle you can create the Git repository with "initm" or "initb".
Init a model repository with "initm"
🔹 git initm [model-name]
Examples:
init the current model (without parameter)
git initminit a specific model
git initm pizzas
Init a bundle repository with "initb"
🔹 git initb [bundle-name]
Examples:
init the current bundle (without parameter)
git initbinit a specific bundle
git initb database-sql-liquibase
Check current status
Check a model repository status with "statusm"
🔹 git statusm [model-name]
Examples:
get the status of the current model (without parameter)
git statusmget the status of a specific model
git statusm cars
Check a bundle repository status with "statusb"
🔹 git statusb [bundle-name]
Examples:
get the status of the current bundle (without parameter)
git statusbget the status of a specific bundle
git statusb front-angular
Publish all changes to remote repository
The "pub[m/b]" command allow to perform several "Git" actions with a single command:
git add Adds all the changes to the index
git commit Creates a new commit containing the current contents of the index It uses a default message
git push Pushes to the remote repository according with the current "depot" definition
With this command you just have to:
edit the model or the bundle
use "git pub[m/b]" to publish it on the remote server
Publish a model repository status with "pubm"
🔹 git pubm [model-name]
Examples:
publish the current model (without parameter)
git pubmpublish a specific model
git pubm pizzas
Publish a bundle repository status with "pubb"
🔹 git pubb [bundle-name]
Examples:
publish the current bundle (without parameter)
git pubbpublish a specific bundle
git pubb database-sql-liquibase
Reset from remote repository
The "reset[m/b]" command allows to perform 2 "Git" actions with a single command:
git fetch Fetch the branch from the remote repository
git reset --mixed Resets the index but not the working tree (changed files are preserved but not marked for commit)
In brief: make the branch match remote, keep changes unstaged, forget old commits. This command is useful in case of "REJECTED_NONFASTFORWARD" error when attempting to push the changes to a remote server with "git pub[m/b]" command.
Reset a model repository with "resetm"
🔹 git resetm [model-name]
Examples:
reset the current model (without parameter)
git resetmreset a specific model
git resetm cars
Reset a bundle repository with "resetb"
🔹 git resetb [bundle-name]
Examples:
reset the current bundle (without parameter)
git resetbreset a specific bundle
git resetb front-angular
Git credentials management
Credentials are required for Git remote repository operations, the "git cred" commands allows to print, set and remove credentials.
You can define credentials at different levels:
"global credentials" used for both models and bundles (the most frequent case)
"model credentials" used only for models
"bundle credentials" used only for bundles
To show all credentials settings (password or token are not printed, just "set" or "not set"):
🔹 git cred show all credentials (all levels)
🔹 git credg show the "global" credentials (for both models and bundles)
🔹 git credm show the credentials for "models"
🔹 git credb show the credentials for "bundles"
To set the credentials use -set parameter
and enter the requested information:
User name
Password or personal access token (PAT)
To remove the credentials use -none parameter
Last updated