We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d72b68e + 006a6d2 commit 8ee4adfCopy full SHA for 8ee4adf
git-fire
@@ -45,12 +45,12 @@ fire() {
45
git commit -m "$message" --no-verify
46
47
for remote in $(git remote); do
48
- git push --set-upstream "${remote}" "$(current_branch)" || true
+ git push --no-verify --set-upstream "${remote}" "$(current_branch)" || true
49
done
50
51
if [[ $(git stash list) != '' ]]; then
52
for sha in $(git rev-list -g stash); do
53
- git push origin "$sha":refs/heads/"$(current_branch $initial_branch)"-stash-"$sha"
+ git push --no-verify origin "$sha":refs/heads/"$(current_branch $initial_branch)"-stash-"$sha"
54
55
fi
56
0 commit comments