Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Development Setting

JinMu Go edited this page Oct 27, 2023 · 1 revision

After Clone this Repository

execute below command

git config --local commit.template .gitmessage.txt
git config --local core.hooksPath .githooks/
  1. git config --local commit.template .gitmessage.txt

    • Sets a commit message template (.gitmessage.txt) for this local repository, ensuring consistent commit message formatting.
  2. git config --local core.hooksPath .githooks/

    • Configures Git to use custom hooks from the .githooks directory within this repository, allowing you to define and run specific pre-commit or post-commit actions.
Clone this wiki locally