[gem5-users] Re: How to turn off Gem5 git commit script?

2021-09-24 Thread Gabe Black via gem5-users
It sounds to me like you've somehow installed the gem5 git hooks for everything on your machine through either the user global or a machine global git config. What you want to do is install the hooks (scripts or links in .git/hooks) in the gem5 repository itself. SCons will prompt you to do this

[gem5-users] Re: How to turn off Gem5 git commit script?

2021-09-24 Thread Todd Bezenek via gem5-users
That works. Thank you, Pedro. On Thu, Sep 23, 2021 at 11:36 PM Pedro Henrique Exenberger Becker < pe...@ac.upc.edu> wrote: > You can try `git commit -m "my message" - n` > > -n is the short version of - -no-verify flag. > https://git-scm.com/docs/git-commit > > However your commits won't be

[gem5-users] Re: How to turn off Gem5 git commit script?

2021-09-24 Thread Pedro Henrique Exenberger Becker via gem5-users
You can try `git commit -m "my message" - n` -n is the short version of - -no-verify flag. https://git-scm.com/docs/git-commit However your commits won't be compliant with gem5 standards. I guess this can be a problem if you want to push your code/modifications to the main repo some day, but I'm