git创建仓库执行git push -u origin master报错:fatal: Authentication failed for ‘xxxx‘

git简单的命令行入门教程:

Git 全局设置:

git config --global user.name "xxx"
git config --global user.email "[email protected]"

创建 git 仓库:

mkdir vue_shop
cd vue_shop
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/xxxx
git push -

你可能感兴趣的:(git,vue,git,github)