Heim > Fragen und Antworten > Hauptteil
1、我在本地已经有一个项目。
2、开发到一半的时候我想用git来管理这个项目。
3、然后我在github上新建了一个项目
4、那么我如何把本地的项目同新建的git关联起来?
我现在知道的办法是使用git clone下载空项目,然后把之前的项目拷过去,git add
然后 commit
push
问题是:我并不想移动或者改原有项目的文件名
PS:我现在使用的环境是CentOS 7
先谢谢回答者~
给我你的怀抱2017-05-02 09:32:41
git init
git add .
git commit -m “init”
git remote add origin 你的github仓库地址
git push
phpcn_u15822017-05-02 09:32:41
在github上创建一个空的资源库,
在本地搭建git环境,提交到你资源库的地址就行
多百度,有很多资源
附:
http://www.linuxidc.com/Linux/2015-08/121007.htm