Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add PREFER_APPEND_FILE_SYNC env #118

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

chouchouji
Copy link

@chouchouji chouchouji commented Feb 21, 2025

resolve #115

@toplenboren
Copy link
Owner

toplenboren commented Feb 21, 2025

Thanks for the PR. Can you please add some tests, so that no one would be to break your code :-)

@chouchouji chouchouji force-pushed the feat-env branch 5 times, most recently from cafec52 to 3261d69 Compare February 22, 2025 04:10
@chouchouji
Copy link
Author

Thanks for the PR. Can you please add some tests, so that no one would be to break your code :-)

Thanks for your review. I had added test cases.

@JounQin
Copy link
Collaborator

JounQin commented Mar 9, 2025

But what if the user run simple-git-hooks multi times?

@chouchouji
Copy link
Author

But what if the user run simple-git-hooks multi times?

This is a rare scenario, and we should specify in the document what consequences it will bring.

@JounQin
Copy link
Collaborator

JounQin commented Mar 9, 2025

It is a very common practice to use "prepare": "simple-git-hooks" lifecyle script to ensure hooks are always latest.

Oh, I miss understood, a temporary env variable to init simple-git-hooks seems fine enough, not a persist option.

@chouchouji
Copy link
Author

It is a very common practice to use "prepare": "simple-git-hooks" lifecyle script to ensure hooks are always latest.

Oh, I miss understood, a temporary env variable to init simple-git-hooks seems fine enough, not a persist option.

We can provide a detailed explanation of the purpose of this environment variable to prevent unnecessary problems for users

Copy link

changeset-bot bot commented Mar 20, 2025

⚠️ No Changeset found

Latest commit: 08ec628

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@JounQin
Copy link
Collaborator

JounQin commented Mar 20, 2025

@chouchouji Hi, tests are failing on CI after merging #120, can you rebase?

And for the env name, I think SIMPLE_GIT_HOOKS_PREFER_APPEND would be better, WDYT?

@toplenboren
Copy link
Owner

toplenboren commented Mar 20, 2025

But what if the user run simple-git-hooks multi times?

This is a rare scenario, and we should specify in the document what consequences it will bring.

Actually, I still do not get the usecase for this option.. Why would I need to use append file sync, and not simply set the hooks myself if I want that level of customization?

Can you please share your usecase @chouchouji

@JounQin
Copy link
Collaborator

JounQin commented Mar 21, 2025

I forgot to mention that if the user use "prepare": "simple-git-hooks" pattern, even a temporary environment won't work as expected.

  1. with the environment, append every time
  2. without the environment, override every time

So never works as expected.

@chouchouji
Copy link
Author

But what if the user run simple-git-hooks multi times?

This is a rare scenario, and we should specify in the document what consequences it will bring.

Actually, I still do not get the usecase for this option.. Why would I need to use append file sync, and not simply set the hooks myself if I want that level of customization?

Can you please share your usecase @chouchouji

I add some commands in commit-msg and my config like "commit-msg": "pnpm exec vr commit-lint -p $1". It will override my commands. So I think we can resolve this problem by env or other thing.

@chouchouji
Copy link
Author

I forgot to mention that if the user use "prepare": "simple-git-hooks" pattern, even a temporary environment won't work as expected.

  1. with the environment, append every time
  2. without the environment, override every time

So never works as expected.

Please check the comment below. I show my usecase. Maybe we can find other methods to resolve my problem.

@chouchouji
Copy link
Author

chouchouji commented Mar 21, 2025

I forgot to mention that if the user use "prepare": "simple-git-hooks" pattern, even a temporary environment won't work as expected.

  1. with the environment, append every time
  2. without the environment, override every time

So never works as expected.

Yes. My behavior is use cli. So I think env is good for me. But some users maybe use this tool unlike me.

@toplenboren
Copy link
Owner

toplenboren commented Mar 22, 2025

From what I understood it sounds like you can either:

  • add your custom commands from commit-msg hook to simple-git-hooks config
  • remove commit-msg hook from simple-git-hooks config and just set everything yourself

I understand that it cannot be done this way if you work in a team on some project because:

  • You do not want to commit your personal commands to project's git
  • You do not want to remove simple-git-hooks config for all teammates

To handle this case we can add something like simple-git-hooks.custom.json that you won't commit to git and that can override the "commit-msg" hook if explitly set to null

Like

simple-git-hooks.custom.json

const config = {
  "commit-msg": null // will overwrite settings in config if set to null
}

That way you will be able to have both config and your commands inside of simple-git-hooks or you will be able to simply remove commit-msg from simple-git-hooks configuration and handle commit-msg hook yourself

All these without the need to commit the code elsewhere

I've implemented something similar in another project, open-condo-software/condo#5893 open source engineers want to override translations that we have set

@chouchouji wyt?

@chouchouji
Copy link
Author

据我了解,您可以:

  • 将自定义命令从commit-msg钩子添加到simple-git-hooks配置中
  • 从配置中删除一切commit-msg钩子simple-git-hooks并自行设置

我理解,如果你在某个项目中以团队形式工作的话就能够这样做,因为:

  • 你不想将你的个人命令提交到项目的 git
  • 您不想删除simple-git-hooks所有珍珠的配置

为了处理这种情况,我们可以添加一些类似的东西,simple-git-hooks.custom.json比如你不会提交给 git,并且可以覆盖“commit-msg”钩子(如果明确设置为 null)

喜欢

简单-git-hooks.custom.json

const config = {
  "commit-msg": null // will overwrite settings in config if set to null
}

这样,您将能够在 simple-git-hooks 中同时拥有配置和命令,或者您可以简单地从 simple-git-hooks 配置中删除 commit-msg,并自己处理 commit-msg 钩子

所有这些都消耗在其他地方提交代码

我在另一个项目中实现了类似的东西,open-condo-software/condo#5893开源工程师想要覆盖我们设置的翻译

@chouchouji为啥?

Thanks for your reply and suggestion. I think it is a good idea.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

How about appending the file contents instead of replacing them?
3 participants