git 安裝和使用
阿新 • • 發佈:2018-01-18
粘貼 push src 地址 access 情況 log net 編輯
1、安裝
官方下載地址:https://git-scm.com/downloads 選擇對應的系統點擊下載安裝即可
2、配置
(前提你得有自己的github賬戶)進入https://github.com/new 創建一個代碼倉
然後打開本地 git軟件
設置全局配置
git config --global user.name "your name" git config --global user.email "your email" d: 首先進入項目磁盤 然後cd aaa/aaa 進入到項目文件夾 git init //初始化本地文件 git add README.md git commit -m "first commit" git remote add origin [email protected]:用戶名/xxxx.git (xxx.git這個是你代碼倉的地址上面有提到首先要去新建一個代碼倉) git push -u origin master //提交到你的代碼倉
git push -u origin master 如果這一步報這個錯誤(Please make sure you have the correct access rights and the repository exist)
這個問題是因為沒有配置SSH key 請按照以下操作解決這個問題
首先打開
git bash 這個窗口 然後輸入 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
默認情況下是生成在C:\Users\您的計算機名\.ssh 這個地址下 id_rsa.pub 用編輯器打開這個文件 復制裏面的內容
打開https://github.com/,登陸你的賬戶,進入設置
進入ssh設置
在key中將剛剛復制的粘貼進去
點擊add ssh key就可以了 然後在git cmd窗口下重新執行 git push -u origin master 就可以了
git 安裝和使用