1 安裝git
?此時需要安裝?TortoiseGit-2.2.0.0-64bit.msi定硝,然后安裝Git-2.13.3-64-bit.exe缔俄,記住安裝順序不要弄錯了。
2 申請碼云賬戶,然后創(chuàng)建私有的空項目秩命。
3 在代碼的文件夾里使用git命令行尉共。
git config --globaluser.name "user.name" //設置帳戶名
git config --global user.email "user.email"http://郵箱
git init//初始化git。第一次用的
git add -A //添加所有文件
git commit -a -m ?"注釋內(nèi)容” //添加注釋
git remote add origin + 倉庫地址(碼云上新建項目點進去克隆或復制的鏈接)
git push origin master //上傳倉庫到碼云
這是可能會出現(xiàn)以下錯誤
dell@DESKTOP-6GNK8R2 MINGW64 /f/new/project (master)
$ git push origin master
To https://gitee.com/lusername/project?
! [rejected]? ? ? ? master -> master (non-fast-forward)
error: failed to push some refs to 'https://gitee.com/username/project?'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
這是忘記更新遠程倉庫代碼
git pull --rebase origin master將遠程文件同步下來弃锐。
git push -u origin master然后再執(zhí)行推送
這樣就ok了袄友。可以去試試了E铡>珧肌!