1 安装git
此时需要安装 TortoiseGit-2.2.0.0-64bit.msi,然后安装Git-2.13.3-64-bit.exe,记住安装顺序不要弄错了。
2 申请码云账户,然后创建私有的空项目。
3 在代码的文件夹里使用git命令行。
git config --globaluser.name "user.name" //设置帐户名
git config --global user.email "user.email"//邮箱
git init//初始化git。第一次用的
git add -A //添加所有文件
git commit -a -m "注释内容” //添加注释
git remote add origin + 仓库地址(码云上新建项目点进去克隆或复制的链接)
git push origin master //上传仓库到码云
这是可能会出现以下错误
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然后再执行推送
这样就ok了。可以去试试了!!!
网友评论