赞
踩
最近想把自己写的几个小程序上传到github上面,但是github那端已经不让使用账号密码进行验证登录了,所以在此做一个自己总结的github token使用教程来记录一下,以防以后再不会用了。
首先选择setting进入设置,然后在进入Developer setting,选择生成私人token。
note随便写,天数尽量选长点时间,选上repo才能用git指令操作自己的repositories。
可以从自己的github上面clone一个项目,例如:
值得注意的是它的格式是这样的:
你在github上的原始url: https://github.com/<username>/<repo>.git
而你现在需要clone的则是:https://<your_token>@github.com/<username>/<repo>.git
<your_token>是你自己刚刚生成的token,
<username>是自己设置的,你可以从这里查看(是下面的(CPerdst)):
如果正常的话,现在你已经将自己在github上的项目下载下来了(如果没有,建议开一下代理,毕竟github是国外的网站),现在就可以继续写自己的项目了,我这里为了演示就直接随便创造一些文件来代替。
现在进入自己的项目:
使用git status查看当前的状态
使用git add ./来确定更改,然后使用git commit -m 'your update message'添加提交信息。
然后使用git remote来查看自己的url,git branch -v 查看自己的分支,使用git remote set-url <your_url> https://<your_token>@github.com/<username>/<repo>.git 来更新自己的url
使用git push <your_url> 来更新github
补充:如果当使用git push的时候没有显示账户密码可以使用 git config --system --unset credential.helper 更新。
或者使用git reset重置一下
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。