使用git將檔案上傳到碼雲
阿新 • • 發佈:2018-11-09
初始化步驟
1.安裝git
https://git-scm.com/downloads/
2.新建一個資料夾,右鍵Git Bash Here,彈出命令視窗
3.輸入git init,生成.git資料夾
4.配置使用者資訊
git config user.name 使用者名稱 (git config user.name Jie)
git config user.email 郵箱(碼雲註冊郵箱)
5.連線雲端倉庫
git remote add origin 專案地址
使用步驟
一、將碼雲專案拉到本地
git pull origin master
二、將本地檔案上傳到碼雲
1.將要上傳的專案或修改的檔案放入剛才新建的資料夾中
2.新增並提交
git add .
git commit -m "描述"
3.加上 -f 強制將本地專案推送到碼雲
git push origin master -f
如果提示輸入使用者名稱和密碼,就輸入碼雲的賬號密碼
問題
一、如果git add .出現
warning: LF will be replaced by CRLF in ......
The file will have its original line endings in your working directory .
解決方法
git config --global core.autocrlf false
原因是路徑中存在 / 的符號轉義問題,false就是不轉換符號預設是true,相當於把路徑的 / 符號進行轉義,這樣新增的時候就有問題
二、單個檔案上傳的大小預設不超過50M
解決方法:可以通過命令,修改單個檔案預設大小(以設定500M以例)
git config --global http.postBuffer 524288000