赞
踩
注:本人小白,为了避免麻烦,在权限选择那里我全都选了最高权限,因为我遇到过有一些item不是选最高权限的,最后push不了
拿到你的token之后,在git命令行中clone你的仓库下来:
首先移除 remote origin
然后添加token,token的添加方式很奇怪,就是通过添加remote origin
的方式添加token,公式如下:
git remote add origin https://{your username}:{access token}@github.com/{your username}/{repository name}.git
把用户名改成你github的用户名,仓库名改成你clone下来的仓库名(花括号删掉)
查看是否添加成功:
git remote -v
git config --global user.name "你的github用户名"
git config --global user.password"你的github密码"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。