-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/#418 - Documentation on using Taipy Version system with Git #742
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In General, I would name the branch the same as the version.
We can even imagine ta new command line that would checkout the branch before actually run the app.
taipy run main.py --with-git --experiment 1.0
Behind the scene, the command line would do the following:
if branch 1.0 exists
git checkout 1.0
else
git checkout 1.0
taipy run main.py --experiment 1.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👌
#418