https://git-scm.com/downloadshtml
選擇須要的版本,一直點擊下一步直到安裝好。git
出現這三個圖標,咱們通常使用Git Bsahgithub
進入vim界面vim
[user] name = xxxxxxe email = 2xxxxx4@qq.com [alias] co = checkout ci = commit st = status pl = pull ps = push dt = difftool ca = commit -am b = branch [push] default = simple
按下i,寫入配置緩存
按esc退出寫入模式,輸入:wq保存並退出ssh
完成註冊登陸spa
進入設置頁面code
查看生成ssh的方法htm
點擊進入
以上爲截圖,須要的下面是這句,複製
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
新建.ssh文件夾,進入該文件夾
粘貼,修改郵箱爲註冊的github郵箱
cat id_rsa.pub
輸入cat id_rsa.pub,查看公共ssh,祕鑰
複製紅色部分
打開github的setting頁面,進入ssh,點擊右上方的new ssh key
給標題起名,剛複製的粘貼進key裏,點擊add ssh key
若是沒有github文件,須要新建profile
後續步驟一致
找到項目文件頁面,點擊c綠色按鈕clone
複製路徑
返回上級目錄或者進入創建好的工做目錄(注意:cd後面要有空格)
使用命令git clone 加剛複製的項目路徑,回車後出現詢問是否鏈接,輸入yes,回車,顯示顯目已經從遠程下載好
git clone git@github.com:xiaoge2017/gittest.git
可按照路徑查看下載好的文件夾內容
打開編輯器,新建一個new.html文件,寫入內容並保存
對git初始化,遠程文件夾和本地得對應起來(因爲以前文件是clone的,已經有對應關係,因此顯示存在)
git init
git remote add origin git@github.com:xiaoge2017/gittest.git
查看本地和遠程的狀態,發現新增的new.html文件
git status
所有提交到緩存區
git add .
確認提交,寫入提交說明
git commit -am 'init2'
提交到git上
git push
點擊新增長的文件
在線可顯示本頁面內容
git merge origin/master//把遠程下載下來的代碼合併到本地倉庫,遠程的和本地的合併
————————————————————————————————————————————
cd Desktop/VUE-SSR-TECH #進入本地項目目錄 git init #初始化 git remote add origin https://github.com/xiaoge2017/VUE-SSR-TECH.git #增長遠程路徑 git status #查看不一樣 git add . 添加全部新增 git commit -m "xxx" #提交 git push --set-upstream origin master #設置主分支 git push -u origin master #上傳主分支全部添加
「git push --set-upstream origin master」輸入後會跳出登陸窗口