1
1

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 5 years have passed since last update.

git-duetの.git-authors でイニシャルが認識できない時の落とし穴

Last updated at Posted at 2017-06-11

#はじめに
git-duetってそもそもなに?
git-duetの基本的な使い方は?
といったことについては検索すれば日本語でも記事が出てくるので省略させていただきます。

#背景
プロジェクトでgit-duetを利用しています。最近新たに環境を作ることになってホイホイとインストールを進めていたらgit-duetで思いがけず時間がかかったのでメモを残しておきます。
検索してもほとんどヒットしなかったのでこんな些細なことでひっかかる人はいないのかもしれませんね。笑

#問題
git-duetの設定の中でルートディレクトリに以下のようなファイルを作成する必要があります。
(内容はGitHubのREADMEそのままです。)

~/.git-authors
authors:
 jd: Jane Doe; jane
 fb: Frances Bar
email:
 domain: awesometown.local

ただこれを設定するだけ!本当に簡単ですね。
これを設定してもイニシャルが認識できないというエラーを延々と吐かれてしまいました。

#解決策
私は上記のように設定すべき .git-authors を以下のように書いていました。

~/.git-authors
authors:
jd: Jane Doe; jane
fb: Frances Bar
email:
  domain: awesometown.local

違いがお分かりでしょうか。
イニシャルの前に空白を入れていなかったこと。これだけです。
空白を入れた途端正常に作動して拍子抜けました。

#おわりに
はじめはパスが悪いのかとか色々疑ったのですが原因は些細なことでした。
知識がないうちはREADMEに記載されている体裁にも意味があるかも!と疑ってそのままを再現できるようにしないといけないですね!

1
1
1

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?