0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

git-setretsでcommitができなくなった【解決済】

Last updated at Posted at 2022-11-30

GitHubDesktopでコミットできなくなった

Fiyj7aOUcAAQ0Dw.jfif

私はWindowsでGitHubDesktopを使用しているのですが、いつもの通りcommit to mainしようとしたら画像のような文字化けしたエラーが出てきてしまいました。
この解読に無駄な時間をかけてしまいました...

実は、トークンを間違えてアップロードしてしまわないようにGit-secretsをインストールしていました。
これが原因かと思い、フォルダの削除をしたのですが解決しませんでした...

CUIではエラーメッセージが出てきた

諦めてCUIでcommitしたら文字化けしていないエラーメッセージがちゃんと出てきました。
Fiyx8WZUUAAD-DT.jfif

git: 'secrets' is not a git command ということなので、commitがsecretsに置き換えられているようです。

これを設定しているのは
.git/hooks/commit-msg
.git/hooks/pre-commit
.git/hooks/prepare-commit-msg
の実行ファイルなので削除してください。
gtiは隠しフォルダになっている可能性があります。

するとcommitできるようになっていると思います。

brewを使った場合は

$ brew remove git-secrets

でアンインストールできます。

git-secretsフォルダを削除しても良いようです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?