已经有一个项目的源码如何将其推送到远程服务器
Posted pongx_20
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了已经有一个项目的源码如何将其推送到远程服务器相关的知识,希望对你有一定的参考价值。
---恢复内容开始---
1.首先在远程服务器上创建一个仓库
2.在本地创建一个文件夹用于存放项目的源代码、
3.打开git bash环境 执行git init命令
4. 使用 git rmote add origin +项目的ssh地址例如: git remote add origin git@gitee.com:pongxshop/admin-fe.git
将本地的文件夹与远程服务器的仓库对应上
5.将要提交的代码复制到当前文件夹
6.使用git add . 和git commit -am "init product"将代码提交到本地
7.将代码推送到远程服务器:git push
8.这个时候他会提示错误:
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin master
9.秩序执行:git push --set-upstream origin master即可
10.至此我们就把代码发布到线上啦!
以上是关于已经有一个项目的源码如何将其推送到远程服务器的主要内容,如果未能解决你的问题,请参考以下文章
如何在GIT Rebase Interactive Squash之后删除远程存储库上的历史记录提交消息
如果项目位于 javascript 对象中,如何将其推送到数组中 [state.lastValue.push 不是函数]