Github 上传项目(个人令牌token)

1.点击 github头像       :

setting         ->    

Developer Settings        ->      

Personal access  tokens 

Github 上传项目(个人令牌token)_第1张图片

2.在要上传的文件夹下运行以下命令:

git init
git commit -m "first commit"
git branch -M main

 利用以下命令模板(根据自己的信息填写):

git remote set-url origin https://@github.com//

模板分析(需要修改的部分):

        :刚才生成的个人令牌
:你的github名字
        : 存储库的名字

再运行:

git push origin main

成功: 

Github 上传项目(个人令牌token)_第2张图片

报错(1):

remote: Permission to samrao2/manager-4.git denied to samrao1.
fatal: unable to access 'https://github.com/samrao2/manager-4.git/': The requested URL returned error: 403

解决方式

(1):Token未给出权限,需要勾选权限:

Github 上传项目(个人令牌token)_第3张图片

Github 上传项目(个人令牌token)_第4张图片 

之后使用token再试一次

(2):

  1. 从(Windows)凭据管理器中删除所有GitHub条目

  2. 在Git全局配置中设置useHttpPath = true

git config --global credential.useHttpPath true

您可以通过检查

git config --global -e

若名字错误可以进行修改(自己改):

git config --global user.name "user_name"

 

你可能感兴趣的:(github)