首先,在github上建立遠(yuǎn)程版本庫(kù)https://github.com/mygit/testgit.git
將本地工程添加到遠(yuǎn)程版本庫(kù)中去
git init // 初始化git環(huán)境git config --global user.name 'name' // 配置用戶(hù)名,以便于遠(yuǎn)程提交git config --global user.email xxx@xxx.xxx // 配置用戶(hù)郵箱,以便于遠(yuǎn)程提交git add . // 添加所有文件git commit -m 'commit' // 提交到本地庫(kù)git remote add nickname https://github.com/yourgit/testgit.git // 添加遠(yuǎn)程版本庫(kù)git push nickname master // 將本地master分支提交到遠(yuǎn)程分支git remote show nickname // 顯示遠(yuǎn)程信息如果出現(xiàn)”Updates were rejected because the tip of your current branch is behind“錯(cuò)誤,則說(shuō)明github上的readme與本地版本沖突,可以執(zhí)行如下語(yǔ)句強(qiáng)行提交
git push -u nickname master -f
從git上獲取最新版本代碼的命令為
git clone -b branchname username@https://github.com/yourgit/testgit.git
聯(lián)系客服