如何通過github上傳專案並在readme.md中展示圖片二維碼

橙色流年發表於2018-06-15
將本地專案上傳至github
 
第一步:git init (建立倉庫)
 
第二步:git add README.md (新增專案)git add *
 
第三步:git commit -m “first commit” (新增備註)
 
第四步:git remote add origin https://github.com/chenchu001/xijuyuanh5.git (連線到伺服器地址)
可能出現問題 fatal: remote origin already exists.  
解決方案:
1、先輸入$ git remote rm origin
2、再輸入git remote add origin https://github.com/chenchu001/xijuyuanh5.git 就不會報錯了!
 
第五步:git push -u origin master(上傳)
 
在readme.md中展示圖片二維碼

1、首先把圖片放到程式裡。提交到Github遠端倉庫。

2、在瀏覽器進入遠端Github倉庫找到圖片開啟圖片。那麼當前瀏覽器連結就是圖片地址。複製出來。

3、開啟README.md 進入編輯狀態。放入如下程式碼進入編輯框。儲存即可看見效果

![image](https://github.com/chenchu001/shopcart/blob/master/static/images/shopcart.png)

其中  https://github.com/chenchu001/shopcart/blob/master/static/images/shopcart.png  是我的圖片地址。你們替換成你想顯示的圖片地址即可

相關文章