当前位置:   article > 正文

git clone和git push操作流程_git clone后怎么push

git clone后怎么push

生成personal access token

直接使用git push命令或者用HTTPS进行git clone时会报错,错误信息如下所示:

报错:remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see github.blog/2020-12-15-… for more information.
fatal: unable to access 'github.com/sober-orang…': The requested URL returned error: 403

或者出现下图所示情况,即输入命令后,会出现一个窗口,上面提示用浏览器登录或密码登录,若点击浏览器登录会出来一个灰色小窗口,依次输入用户名与密码,但登录成功后,git黑窗口却出现fatal:已取消一个任务;若点击密码登录,会出现一串验证码,并跳转到网页窗口,将方才出现的验证码输入进去后,网页上将出现如图所示 Congratulations,you are all set!字样,但git黑窗口依然会出现fatal:已取消一个任务。

造成其二者报错信息的原因:自2021年8月13日起,github不再支持使用密码push的方式。

解决方案:两种
一、 使用SSH
二、使用Personal access token

法一:使用SSH

点击此链接跳转至方法详情

法二:使用Personal access token

首先,需要获取token

1.点击你的GitHub头像 -> 设置 -> 开发者设置 -> Personal access tokens -> Generate new token

2.生成token

3.复制token 4.使用token进行push、pull、clone等操作(pull和clone等操作原理同push,只需替换push为pull或其他相应的命令即可)
使用token的方式其实原理在于将原来明文密码换为token,说白了就是token>=password,之所以我这里写了>号,是因为token的功能远大于原来的password,相比password,token具有很多其没有的用法。

token使用方法

token法一:直接push

此方法每次push都需要输一遍token

  1. # git push https://你的token@你的仓库链接,我这里是我的仓库链接你要改成你的
  2. git push https://你的token@github.com/sober-orange/study.git
  3. 复制代码

token法二:修改remote别名

这种方式在push的时候直接指明别名就可
如果你已经设置过remote别名,使用如下命令

  1. # 我这里的别名是origin
  2. # git remote set-url 你的remote别名 https://你的token@你的仓库地址
  3. # git remote set-url origin https://【用户名】:【token】@github.com/用户名/项目名.git
  4. git remote set-url origin https://你的token@github.com/sober-orange/study.git
  5. # 提交代码
  6. git push -u origin master
  7. 复制代码

如果你未设置过别名,使用如下命令添加别名

  1. # git remote add 别名 https://你的token@你的仓库地址
  2. git remote add origin https://你的token@github.com/sober-orange/study.git
  3. # 提交代码
  4. git push -u origin master
  5. 复制代码

token法三:使用Git Credential Manager Core (GCM Core) 记住token

  1. git push
  2. Username: 你的用户名
  3. Password: 你的token
  4. # 记住token
  5. git config credential.helper store
  6. 复制代码

toekn法四:使用Windows的凭据管理器

  1. 打开凭据管理器 -> windows凭据
  2. 找到“git:github.com”的条目,编辑它
  3. 用token替换你以前的密码

push命令详细说明

git push命令用于将本地分支的更新,推送到远程主机。它的格式与git pull命令相仿。

  1. git push <远程主机名> <本地分支名>:<远程分支名>
  2. 复制代码

注意:这里的:前后是必须没有空格的。\colorbox{cyan}{注意:这里的:前后是必须没有空格的。}注意:这里的:前后是必须没有空格的。​

注意,分支推送顺序的写法是<来源地>:<目的地>,
所以git pull是<远程分支>:<本地分支>,
而git push 是<本地分支>:<远程分支>。

如果省略远程分支名,则表示将本地分支推送与之存在"追踪关系"的远程分支(通常两者同名),如果该远程分支不存在,则会被新建。

  1. git push origin master
  2. 复制代码

上面命令表示,将本地的master分支推送到origin主机的master分支。如果后者不存在,则会被新建。(在本地需要上传的文件夹上打开git后,使用git init命令生成.git文件后,该文件夹默认为master分支)

如果省略本地分支名,则表示删除指定的远程分支,因为这等同于推送一个空的本地分支到远程分支。

  1. git push origin :master
  2. # 等同于
  3. git push origin --delete master
  4. 复制代码

上面命令表示删除origin主机的master分支。

如果当前分支与远程分支之间存在追踪关系,则本地分支和远程分支都可以省略。

  1. git push origin
  2. 复制代码

上面命令表示,将当前分支推送到origin主机的对应分支。

如果当前分支只有一个追踪分支,那么主机名都可以省略。

  1. git push
  2. 复制代码

如果当前分支与多个主机存在追踪关系,则可以使用-u选项指定一个默认主机,这样后面就可以不加任何参数使用git push。

  1. git push -u origin master
  2. 复制代码

上面命令将本地的master分支推送到origin主机,同时指定origin为默认主机,后面就可以不加任何参数使用git push了。

git push操作流程

  1. # 1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库
  2. git init
  3. # 2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件
  4. git add .
  5. # 3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明
  6. git commit -m 'first commit'
  7. # 4、关联到远程库 即使用如下命令添加别名
  8.   git remote add origin 你的远程库地址
  9. # 5、使用token登录
  10. git remote set-url origin https://【用户名】:【token】@github.com/用户名/项目名.git
  11. # 6、把本地库的内容推送到远程,使用 git push命令,实际上是把当前分支master推送到远程。执行此命令后会要求输入用户名、密码,验证通过后即开始上传。
  12. git push -u origin master:远程分支名
  13. 复制代码

注意: git使用commit命令后显示Author identity unknown
报错如下:

  1. *** Please tell me who you are.
  2. Run
  3. git config --global user.email "you@example.com"
  4. git config --global user.name "Your Name" to set your account's default identity.
  5. Omit --global to set the identity only in this repository. fatal:
  6. unable to auto-detect email address (got 'Zero@zero.(none)')
  7. 复制代码

在git命令行中重新输入命令:
先输入:git config --global user.name “你的名字”
回车后,
再输入:git config --global user.email “你的邮箱地址”
完成后再提交就没问题了。

git clone 流程

  1. git clone https://access_token@github.com/username/xxx.git
  2. 复制代码

git相关命令

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/463374
推荐阅读
相关标签
  

闽ICP备14008679号