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

git configするときにユーザー名/パスワード入れてアクセスする方法

Posted at
git config submodule名 "https://user名:パスワード@gitのURL"

ユーザー名や、パスワードに@などが入っている場合は、URLエスケープする必要がある。

参考:TECHNICAL MANUAL

例えば、user名にメアドが入ってたりしたら(user@hogex.co.jp)

git config submodule名 "https://user%40hogex.co.jp:パスワード@gitのURL"

みたいな感じ。

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?