方式一:通过拷贝本地目录里的东西到已下载好的本地git仓库里
1. 在git网站里新建一个git仓库supermall:
https://github.com/leslie9121030/supermall.git
2. 假设我们本地有一个项目supermall1,如果想要把本地项目上传到远程supermall仓库里,首先需要在本地下载这个仓库:
git clone https://github.com/leslie9121030/supermall.git
3. 然后将之前新建好的脚手架项目supermall1里的文件(除了.git目录)全部copy到下载好的git仓库supermall里
4. 接下来是上传项目到远程git仓库里:
* 首先进入git仓库supermall
* 配置git账户:
git config --global user.name "leslie9121030"
git config --global user.email "1057720879@qq.com"
* 上传:
git status
git add .
git commit -m "项目初始化"
git push
此时就完成了上传,这时候不禁要疑问:系统知道要把本地的这个仓库上传到远程的哪个仓库嘛?
答案很简单:你的本地仓库名为supersmall,那系统自动上传到你账户下的同名仓库。
方式二:通过git remote add origin配置远程上传的目的地:
git init
git add 某文件
git commit
#这时候已经将某个文件上传到本地缓存仓库,然后下一步要设置本地缓存仓库里的那个文件最重要提交到远程仓库的具体位置:
git remote add origin https://github.com/leslie9121030/supermall.git
git push -u origin master
网友评论