botanikanet / get_group_src.sh
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | #!/bin/bash |
| 2 | |
| 3 | function usage { |
| 4 | echo "basename ${0} Get src of group in Gitlab" |
| 5 | echo "--help | -h Print this help" |
| 6 | echo "--token-file= | -t <file> Set file with Gitlab token" |
| 7 | echo "--gitlab-url=* | -g <url> Set Gtilab URL" |
| 8 | echo "--group-id=* | -i <id> Set group id" |
| 9 | exit 1 |
| 10 | } |
botanikanet / get_all_src.sh
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | #!/bin/bash |
| 2 | set -ex |
| 3 | |
| 4 | usage() { |
| 5 | echo "basename ${0} get all src from Gitlab" |
| 6 | echo "--help | -h Print this help" |
| 7 | echo "--token-file= | -t <file> Set file with Gitlab token" |
| 8 | echo "--gitlab-url=* | -g <url> Set Gtilab URL" |
| 9 | exit 1 |
| 10 | } |
botanikanet / create_mr_from console
0 likes
0 forks
1 files
Last active 4 months ago
Создание MR из консоли
| 1 | git push -o merge_request.create -o merge_request.title="<Your MR Title>" -o merge_request.description="<Your MR Description>" origin <your-feature-branch> |
Newer
Older