We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc58b8 commit 50f730dCopy full SHA for 50f730d
lib/git-subrepo
@@ -652,11 +652,11 @@ subrepo:push() {
652
fi
653
654
655
- local force=
656
- "$force_wanted" && force=--force
+ local force=''
+ "$force_wanted" && force=' --force'
657
658
- o "Push $force branch '$branch_name' to '$subrepo_remote' ($subrepo_branch)."
659
- RUN git push $force "$subrepo_remote" "$branch_name":"$subrepo_branch"
+ o "Push$force branch '$branch_name' to '$subrepo_remote' ($subrepo_branch)."
+ RUN git push$force "$subrepo_remote" "$branch_name":"$subrepo_branch"
660
661
o "Create ref '$refs_subrepo_push' for branch '$branch_name'."
662
git:make-ref "$refs_subrepo_push" "$branch_name"
0 commit comments