This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 13a89c258 ORC-2080: [FOLLOWUP] Add `-a` option for `commit` command
13a89c258 is described below
commit 13a89c258f0a8601bcc6cf020e892ee235eca7ef
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Feb 6 15:35:14 2026 -0800
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 <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
dev/create_orc_jira.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/create_orc_jira.py b/dev/create_orc_jira.py
index 8559c0255..68a89af43 100755
--- a/dev/create_orc_jira.py
+++ b/dev/create_orc_jira.py
@@ -77,7 +77,7 @@ def create_and_checkout_branch(jira_id):
def create_commit(jira_id, title):
try:
- run_cmd(['git', 'commit', '-m', '%s: %s' % (jira_id, title)])
+ run_cmd(['git', 'commit', '-a', '-m', '%s: %s' % (jira_id, title)])
print("Created a commit with message: %s: %s" % (jira_id, title))
except subprocess.CalledProcessError as e:
fail("Failed to create commit: %s" % e)