1、碼雲上新建乙個倉庫 ***x (倉庫名)
2、cd 到你要上傳專案的資料夾中 //右擊滑鼠git bash
3、使用 git init 命令 //初始化乙個git 本地倉庫此時會在本地建立乙個 .git 的資料夾(博主這裡看不到,應該是隱藏了)
4、使用git remote add origin 你的碼雲使用者名稱/倉庫名 //新增遠端倉庫
5、(1)使用 git pull origin master 命令,將碼雲上的倉庫pull到本地資料夾
(2)或者git clone 此鏈結-->
6、將要上傳的檔案,新增到剛剛建立的資料夾
7、使用git add . (. 表示所有的)或者 git add + 檔名 // 將檔案儲存到快取區
8、使用git commit -m '新新增的檔案內容描述' //新增檔案描述(可能會有錯誤,看下文)
9、使用git push origin master ,將本地倉庫推送到遠端倉庫
如果在第八步遇到以下錯誤
8.git commit -m "some init msg"
*** please tell me who you are.
rungit config --global user.email "[email protected]"
git config --global user.name "your name"
to set your account's default identity.
omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'administrator@ms-201610130300.(none)')
在git命令列中輸入以下,即可
git config --global user.email "你的郵箱"
git config --global user.name "你的名字"
如果有問題或者建議請多提出交流
you friend at csnd :)
如何將本地專案上傳到碼雲
一 在碼雲上新建乙個專案,專案名以demo為例,新建後複製專案位址 後面用得到 二 在終端開啟專案的根目錄。三 執行git init命令,此時專案目錄中會出現.git資料夾。如果看不到隱藏檔案,可以使用shift command 顯示隱藏檔案。四 新增到遠端倉庫。git remote add ori...
如何將本地專案上傳到碼雲
步驟 1 碼雲上新建乙個專案 x 專案名 2 本地建立乙個資料夾e x,然後使用git bash 3 cd 到本地資料夾中e x 如果是在建立的檔案中git bash 則此步驟可省略 4 使用 git init 命令 初始化乙個git 本地倉庫此時會在本地建立乙個 git 的資料夾 5 使用git ...
如何將本地專案上傳到碼雲
步驟 1 碼雲上新建乙個專案 x 專案名 2 本地建立乙個資料夾e x,然後使用git bash 3 cd 到本地資料夾中e x 如果是在建立的檔案中git bash 則此步驟可省略 4 使用 git init 命令 初始化乙個git 本地倉庫此時會在本地建立乙個 git 的資料夾 5 使用git ...