使用git提交項目到碼雲

 

一、下載git客戶端工具(.exe) 點擊安裝 
二、找到你存放項目的根目錄(例如:e:/gittest) 
三、在該根目錄下,右鍵,選擇「Git Bash Here」 
四、出現命令行,輸入初始化命令: git initgit

這裏寫圖片描述

五、使用命令行添加幫助文件工具

這裏寫圖片描述

六、進行基本設置.net

git config –global user.name 「用戶名」 (這裏的用戶名是你要設置的git的全局姓名或暱稱) 
git config –global user.email 「郵箱地址」 (設置的全局郵箱地址)命令行

七、 鏈接遠程倉庫code

git remote add origin https://git.oschina.net/XXXXX/XXX.git (你在碼雲上的遠程倉庫地址)blog

八、將項目拷貝放到目錄gittest下圖片

九、上傳代碼到碼雲 
使用 git push -u origin masterrem

注意:push以前先git pull一下 
若是push報錯,則可以使用 git push -u origin master -f進行強制pushget

參考: 
http://blog.csdn.net/u014040650/article/details/52176600it

http://blog.csdn.net/top_code/article/details/50381432

相關文章
相關標籤/搜索