※ssh部分は省略
##tldr;
URLのgithub.comの前にユーザー名+@をつける
##git clone(ユーザー名 = user01の場合)
git clone https://user01@github.com/xxxx/xxxx.git
##git remote add(ユーザー名 = user01の場合)
git remote add origin https://user01@github.com/xxxx/xxxx.git
##誤ってプライベートリポジトリをパブリックリポジトリの形式でremote add originしてしまった時の対処法
###1. リモートリポジトリのURLを確認
git remote -v
以下の結果が出力されることを確認
origin https://user01@github.com/xxxx/xxxx.git (fetch)
origin https://user01@github.com/xxxx/xxxx.git (push)
###2. 既存のリモートリポジトリを削除
git remote rm origin;
git remote remote -v # 何も表示されないことを確認
###3. 正しいURLでremote addし直す(ユーザー名 = user01の場合)
git remote add origin https://user01@github.com/xxxx/xxxx.git