github设置

1、首先我得重新在git设置一下身份的名字和邮箱 

git config --global user.name "yourname"

git config --global user.email“[email protected]"

注:yourname是你要设置的名字,your@email是你要设置的邮箱。


2、删除.ssh文件夹(直接搜索该文件夹)下的known_hosts(手动删除即可,不需要git)


3、git输入命令

$ ssh-keygen -t rsa -C "[email protected]"(请填你设置的邮箱地址)


接着出现:

Generating public/private rsa key pair.

Enter file in which to save the key (/Users/your_user_directory/.ssh/id_rsa):


直接按下回车


系统会自动在.ssh文件夹下生成两个文件,id_rsa和id_rsa.pub,用记事本打开id_rsa.pub


将全部的内容复制


4、打开https://github.com/,登陆你的账户,进入设置


进入ssh设置




在key中将刚刚复制的粘贴进去


点击add ssh key,


5、在git中输入命令:


ssh -T [email protected]


输入命令:yes


github常见操作和常见错误!错误提示:fatal: remote origin already exists.

 1、先输入$ git remote rm origin

    2、再输入$ git remote add origin [email protected]:djqiang/gitdemo.git 就不会报错了!

    3、如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section 'remote.origin'. 我们需要修改gitconfig文件的内容

    4、找到你的github的安装路径,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc

    5、找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行删掉就好了!


Updates were rejected because the tip of your current branch is behind

有如下几种解决方法:

1.使用强制push的方法:

$ git push -u origin master -f

这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。

2.push前先将远程repository修改pull下来

$ git pull origin master

$ git push -u origin master

3.若不想merge远程和本地修改,可以先创建新的分支:

$ git branch [name]

然后push

$ git push -u origin [name]

你可能感兴趣的:(github设置)