---恢复内容开始---
1.首先在远程服务器上创建一个仓库
2.在本地创建一个文件夹用于存放项目的源代码、
3.打开git bash环境 执行git init命令
4. 使用 git rmote add origin +项目的ssh地址例如: git remote add origin [email protected]: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.至此我们就把代码发布到线上啦!
原文地址:https://www.cnblogs.com/pongx/p/11756442.html
时间: 2024-10-10 07:29:58