热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

1、先在远程仓库(如github)创建项目,为了避免错误,不要初始化 README,license,或者gitignore文件.2、打开Terminal终端3、切换到你的本地项目目

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
————————————————
版权声明:本文为CSDN博主「dujianxiong」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/dujianxiong/article/details/78991166



推荐阅读
author-avatar
陛下今晚由臣来侍寝吧值
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有