diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-08-31 16:43:17 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-08-31 16:43:17 +0300 |
commit | 76a8a874ea2bf01110b306e534c9e35c757c6e87 (patch) | |
tree | 9848a06422bf3eb1f034edae1b2b60922ff42f82 | |
parent | 6613fbc2a3fc96b491b6691145c72c5a9550dc84 (diff) |
Run git-add command with --force option in submit-git handler
-rw-r--r-- | brep/handler/submit/submit-git.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/brep/handler/submit/submit-git.in b/brep/handler/submit/submit-git.in index 8bf6a07..c882b84 100644 --- a/brep/handler/submit/submit-git.in +++ b/brep/handler/submit/submit-git.in @@ -405,7 +405,7 @@ function git_add () # <repo-dir> <path>... local d="$1" shift - run git -C "$d" add $gvo "$@" >&2 + run git -C "$d" add --force $gvo "$@" >&2 } # For now we make 10 re-tries to add the package and push to target. Push can |