7 lines
110 B
Bash
Executable File
7 lines
110 B
Bash
Executable File
#!/bin/bash
|
|
branch=$(git branch --show-current)
|
|
|
|
git switch prod
|
|
git merge $branch
|
|
git push
|
|
git switch $brnach |