10
7

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

fatal: bad config line 1 in file /home/ユーザー名/.gitconfigというエラー

Last updated at Posted at 2020-02-29

プログラミング初心者です。
下記のサイトを参考にrailsで作成したアプリをAWSで公開しようとしていたところ表題のようなエラーが発生しました。

(デプロイ編①)世界一丁寧なAWS解説。EC2を利用して、RailsアプリをAWSにあげるまで
https://qiita.com/naoki_mochizuki/items/814e0979217b1a25aa3e

[ユーザー名|rails]$ git clone git@github.com:~~~~~~~~~~~~

のところで、

fatal: bad config line 1 in file /home/ユーザー名/.gitconfig

という、エラーが発生しました。指示通り、/home/ユーザー名/.gitconfigのファイルを見てみると、1行目にコピペしたハイフンをそのままにしていたので、消去したら、正常にgit cloneできました。

----------------------------- ←ここが不要!!!
[user]
  name = your_name
  email = hoge@hoge.com

[color]
  ui = true

[url "github:"]
    InsteadOf = https://github.com/
    InsteadOf = git@github.com:
----------------------------- ←ここが不要!!!

このハイフンも必要と勘違いしていました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?