git config --global user.name 」yourusername」
git config--global user.email 」youremail」
cat ~/.gitconfig
注意:git config --global 引數,有了這個引數,表示你這台機器上所有的git倉庫都會使用這個配置,當然你也可以對某個倉庫指定的不同的使用者名稱和郵箱。
例如:
這時候你當前g:/test目錄下會多了乙個.git的目錄,這個目錄是git來跟蹤管理版本的,沒事千萬不要手動亂改這個目錄裡面的檔案,否則,會把git倉庫給破壞了
ssh-keygen -t rsa -c"你的郵箱"
使用命令「ssh -t [email protected]」,再輸入「yes」。(注意:在獲取前一定要確定自己當前的位置)如果出現you』ve successfully authenticated, but github does not provide
shell access 。這就表示已成功連上github。
$ git clone [email protected]:lishenglin111/darling.git
(git clone:從遠端轉殖乙份到本地
[email protected]:lishenglin111/darling.git :我的ssh)
以後獲取用 git pull origin master
$ git remote add origin [email protected]:lishenglin111/darling.git
(1)本地建立文字test.txt
(2)輸入:$ git add text.txt
(3)輸入:$ git commit -m"新增新檔案"
(4)輸入:$ git push -u origin master
第一次使用加上了-u引數,是推送內容並關聯分支。
(4)$ git push origin master
Git 與 Github進行關聯
1 給本地git配置全域性屬性user.name user.email github 的賬號 git config global user.name your name git config global user.email your email youremail.com 2 在本地建立ssh ...
本地Git倉庫關聯Github專案
登入github後新建repository,記下類似類似git github.com git的位址 如果是windows下,選擇git bash,git config global user.email jethai 126.com 先檢查ssh keys是否已經存在,ls al ssh,如果沒有i...
談談git以及如何關聯github
git 一款免費 開源的分布式 版本管理控制系統 1 利用 git 在本地建立 git倉庫 管理我們的 比如平時練習的 如果你是首次使用,建議配置基礎資訊 檢視 主要注意兩個配置資訊 生成 git 隱藏檔案,儲存本地倉庫的版本資訊 在當前目錄下再建立乙個檔案 gitignore 儲存當 git 提交...