8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
|
|
git tag -d dev
|
|
git push origin develop
|
|
git tag dev
|
|
git push origin dev --force
|
|
|