git配置及同GitHub的連線(免金鑰

2021-09-25 08:31:23 字數 853 閱讀 6887

一種分布式版本控制系統,與程式語言無關

本地庫(以.git目錄為標誌):git init建立

遠端庫(public/private):github,gitee,用gitlab自行搭建,一般叫做origin

git官網

use git from git bash only…,其他預設下一步

配置path: e:\programs\git\bin

配置git:使用者名稱和郵箱右鍵-git bash

git config --global user.name "..."

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

檢視c:\users\yanqun.gitconfig

統一的託管**

為了 在本地 和遠端倉庫之間進行 免金鑰登入,可以配置ssh (先在本地配置,傳送給遠端

)

ssh-keygen -t rsa -c @qq.com
之後一直回車

開啟自己的github,依次找到 settings - ssh and gpg keys - new ssh - title任意、key中輸入 剛才在本地生成的ssh:

將本地剛才生成的id_rsa.pub內容複製到遠端的key中

ssh -t [email protected]
如果本地和遠端成功通訊,則可以在 /.ssh目錄中 發現known_hosts檔案

如果失敗:多嘗試幾次 、檢查回車符

git 與github的配置

git config global user.name yourname git config global user.email your email youremail.com ssh keygen t rsa c your email youremail.com 生成與遠端倉庫通訊的鑰匙 後面...

GitHub及Git的使用

其實開始接觸github和git也有三年的時間了,基本的用法還是會的。但在公司的專案中一直用的還是svn,實際上也只在個人的一些學習專案上用過。所以導致對於github和git基本上處於半懂不懂的程度。最近閒暇有些時間,想總結一下兩者的使用,也算是一次再學習。這個就不需要介紹了,網上一大堆。註冊的過...

配置Git連線GitHub

本地建立ssh key ssh keygen t rsa c your email youremail.com 後面的your email youremail.com改為你在github上註冊的郵箱,之後會要求確認路徑和輸入密碼,我們這使用預設的一路回車就行。成功的話會在 下生成.ss 件夾 通過g...