排名
6
文章
6
粉丝
16
评论
8
{{item.articleTitle}}
{{item.blogName}} : {{item.content}}
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2024TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术
分类:
GitHub
命令 | 备注说明 |
---|---|
git init | 用来在当前项目的目录中生成本地的git管理库,当前目录下多了一个.git的隐藏文件夹 |
git add . | 将该文件夹中所有的文件添加到仓库中,如果想添加特定文件,把 .换成对应的文件名即可 |
git commit -m "first commit | 本次提交的日志信息,方便后期查询日志,双引号中的字符自定义修改 |
git config --global user.email "RookieCoder" | 给该项目设置Github账号。email改为name即可设置Git密码 |
git remote add origin https://githubcom/RookieCoder/.... | 设置仓库地址 |
git push -u origin master | 提交更改,master为仓库分支, |
本文转载于百度经验:https://jingyan.baidu.com/article/295430f18d33490c7e0050e4.html
评价