git绑定用户名
git config --global user.name “itcast”
git绑定用户邮箱
git config --global user.email “[email protected]”
git记住push账号和密码
git config --global credential.helper store # git push的时候记住用户名和密码
git clone远程仓库代码到本地
git clone http://xxx...
首次下载提示输入框,用户输入密码。