Skip to content

Commit 13a89c2

Browse files
committed
ORC-2080: [FOLLOWUP] Add -a option for commit command
### What changes were proposed in this pull request? This PR aims to add `-a` option for commit command as a follow-up of - #2518 ### Why are the changes needed? To add files. ### How was this patch tested? Manually tests. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #2520 from dongjoon-hyun/ORC-2080-2. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent 64fdbd6 commit 13a89c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/create_orc_jira.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def create_and_checkout_branch(jira_id):
7777

7878
def create_commit(jira_id, title):
7979
try:
80-
run_cmd(['git', 'commit', '-m', '%s: %s' % (jira_id, title)])
80+
run_cmd(['git', 'commit', '-a', '-m', '%s: %s' % (jira_id, title)])
8181
print("Created a commit with message: %s: %s" % (jira_id, title))
8282
except subprocess.CalledProcessError as e:
8383
fail("Failed to create commit: %s" % e)

0 commit comments

Comments
 (0)