8 lines
127 B
Bash
Executable File
8 lines
127 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git add -A
|
|
gitmoji commit
|
|
|
|
BRANCH=$(git name-rev --name-only HEAD)
|
|
gum confirm "Push?" && git push origin $BRANCH
|