We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--no-interactive
When pushing multiple modules to repos, it might be dangerous if user mis-pushes on some repos
Edit: We have implemented the push command:
Are you sure you want to push to remote '<branch_name>' [Y/n]
gis push <branch_name>
gis push -f <branch_name>
gis push -r <branch_name>
What left is the --no-interactive flag.
The text was updated successfully, but these errors were encountered:
feat: add --no-interactive option to gis push
6c4cc92
fix: #10
4a1ba21
Successfully merging a pull request may close this issue.
When pushing multiple modules to repos, it might be dangerous if user mis-pushes on some repos
--no-interactive
flag. OR:Edit:
We have implemented the push command:
Are you sure you want to push to remote '<branch_name>' [Y/n]
gis push <branch_name>
will go through all submodules having <branch_name> and push to existing remotegis push -f <branch_name>
will go through all submodules having <branch_name> and force push to existing remotegis push -r <branch_name>
will go through all submodules having <branch_name> and push to new remoteWhat left is the
--no-interactive
flag.The text was updated successfully, but these errors were encountered: