From ffa4dbc51aff929d4f917210ee4c2589886be760 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Tue, 1 Apr 2025 15:02:26 +0200 Subject: [PATCH] commit for another --- data/git/commit_for_another.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 data/git/commit_for_another.md diff --git a/data/git/commit_for_another.md b/data/git/commit_for_another.md new file mode 100644 index 0000000..efa72d4 --- /dev/null +++ b/data/git/commit_for_another.md @@ -0,0 +1,22 @@ +--- +title: "Commit for Another" +tags: [ "data", "git" ] +--- + +You can make Alice the author, while you are still the commiter: + +```sh +name="Alice Bobinson" +email="alice@email.com" + +git add ${file} +git commit --author="${name} <${email}>" +``` + +Or, make Alice both the committer and the author: + + +```sh +git -c user.name="${name}" -c user.email="${email}" commit -m "${message}" +``` +