Githubにpushすると、毎回のようにユーザ名とパスワード聞かれるようになっています。
> D:\sample_project> git push origin master
> Username for 'https://github.com':
現在のURLを確認すると以下のようになっています。
> D:\sample_project> git remote -v
> origin https://github.com/ユーザ名/リポジトリ名.git (fetch)
> origin https://github.com/ユーザ名/リポジトリ名.git (push)
URLに__ユーザ名とアクセストークン__を追加すれば、問題解決できました。
> D:\sample_project> git remote set-url origin https://ユーザ名:アクセストークン@github.com/ユーザ名/リポジトリ名.git/
> D:\sample_project> git remote -v
> origin https://ユーザ名:アクセストークン@github.com/ユーザ名/リポジトリ名.git/ (fetch)
> origin https://ユーザ名:アクセストークン@github.com/ユーザ名/リポジトリ名.git/ (push)
ちなみにGithubのアクセストークンは、__Githubサイト右上の自分のアイコン -> Settings -> Developer Settings -> Personal access tokens__で生成できます。