zoukankan      html  css  js  c++  java
  • 本地Git配置绑定远程Github账户

    (背景是本地环境以前没有绑定过github,即没有残余文件)

    本地设置用户名和链接远程账户(引号内修改为自己的用户名和账号)

    git config --global user.name"wangqinghe95"
    git config --global user.email"675072584@qq.com"

    配置密钥

    ssh-keygen -t rsa -C "675072584@qq.com"

    一路点yes,最后生成的密钥文件在 C:Users67507.ssh (67507是我的wind账户名,根据每个人修改)

    复制id_rsa.pub文件里所有内容,放到 github账户的 setting/SSH and GPG keys里的 SSH kyes里

    然后测试链接

    ssh -T git@github.com

    如果链接成功,则有 You've successfully authenticated, but GitHub does not provide shell access 输出

    如果遇到 Host key verification failed.  报错,在win10环境下,可以使用命令:

    ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts

    在执行测试命令即可。

    查看远程分支

    git branch -a

    切换分支:

    git checkout

    新建本地分支并切换

    git checkout -b (本地分支名) (远程分支名)

  • 相关阅读:
    delete误删除恢复
    oracle自增字段
    oracle唯一约束
    linux得到系统当前日期
    to_char+fm
    oracle范围分区
    oracle之use_hash用法
    oracle11g的regexp函数
    第一个脚本输入参数
    使用ctl将txt或csv文件导入表数据
  • 原文地址:https://www.cnblogs.com/wanghao-boke/p/13581531.html
Copyright © 2011-2022 走看看