第一步:进入新建的文件中
$ cd demo
第二步:把 demo 文件夹变成 git 可管理的电脑本地仓库
$ git init
第三步:把自己的项目复制粘贴到文件夹里面
第四部:把项目添加到电脑本地仓库中
$ git add .
第五步:把项目提交到电脑本地仓库
$ git commit -m "first commit"
注意: commit 后面是对本次上传的一个说明,最好写上,不然上传可能会出错。
第六步:把刚刚 Github 上创建好的远程仓库和本地仓库进行关联
$ git remote add origin https://github.com/yyzheng1729/hstc_Lite.git
第七部:关联好后,把本地仓库的项目推到远程仓库 Github 上
$ git push -u origin master
有时候这样操作并不行
$ git push origin master
To gitee.com:atsunrise/product_manager.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@gitee.com:xxx/xxx.git'
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.
需要在上面的命令加上-f
$ git push -u origin master -f 表示强行推上代码,初次建项目使用可以,(这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。)
出现以下提示,表示代码成功从本地仓库推送到了远程 Github 仓库: