ぷっぽプログラミング備忘録

linux, javascript, php, C#, そのうちScalaとかアプリ開発とかやってみたいです。

2023-02-01から1ヶ月間の記事一覧

githubで毎回パスワードを聞かれないようにする

git

答え git remote set-url origin https://ユーザ名:アクセストークン@github.com/ユーザ名/リポジトリ名.git/ もしくは git config credential.helper store 例 ユーザ名が「hoge」、アクセストークンが「ghp_xxxxxxxxxxxxxxx」、リポジトリ名が「myrepo」だ…