* feat: Add script utils - Closes #1 * Closes #issue-1 add script utils Signed-off-by: Arthurim <arthurbdauphine@gmail.com> * feat: add script utils Closes #issue-1 Signed-off-by: Arthurim <arthurbdauphine@gmail.com> Signed-off-by: Arthurim <arthurbdauphine@gmail.com>
5 lines
141 B
Bash
5 lines
141 B
Bash
#!/bin/sh
|
|
# commits and push
|
|
branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
|
|
./scripts/commit.sh
|
|
git push --set-upstream origin $branch |