You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printer.high_level(f"Adding '{binpath}' as '{d['artifact_relpath_nca']}' ...", file=sys.stderr)
279
-
changes=rbgit.add(binpath)
279
+
changes=rbgit.add(binpath, force=add_ignored)
280
280
ifchanges==True:
281
281
# Set {author,committer}-dates: Make our new commit reproducible by copying from the source; do not sample the current time.
282
282
# Sampling the current time would lead to new commit SHA every time, thus not idempotent.
@@ -337,6 +337,7 @@ def __init__(self, prog):
337
337
g=parser.add_argument_group('Niche arguments')
338
338
g.add_argument("--user-name", metavar='fullname', required=False, type=str, default=os.getenv('GITRB_USERNAME'), help="Author of artifact commit. Defaults to yourself.")
339
339
g.add_argument("--user-email", metavar='address', required=False, type=str, default=os.getenv('GITRB_EMAIL'), help="Author's email of artifact commit. Defaults to your own.")
0 commit comments