本地项目git初始化并提交远程仓库

1、先在远程仓库(如github)创建项目,为了避免错误,不要初始化 README, license, 或者gitignore文件 .

2、打开Terminal终端

3、切换到你的本地项目目录

4、初始化本地仓库

 

git init


5、添加文件到本地仓库

 

 

git add .

 

 

 

 

6、提交文件

 

git commit -m "First commit"

 

 

 

 

 

 

7、到远程仓库的页面上,复制仓库地址 (笔者以配置好ssh,故复制ssh形式的仓库地址)

8、添加远程仓库地址到本地仓库

 

git remote add origin {远程仓库地址}
# Sets the new remote
git remote -v
# Verifies the new remote URL

 

 

9、push到远程仓库

 

 

 

git push -u origin master
# Pushes the changes in your local repository up to the remote repository you specified as the origin

 

 

 

 

 

 

完毕!

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值