
git
anymyna
这个作者很懒,什么都没留下…
展开
-
Git常用命令
克隆github项目 1、选择目标文件夹,进入git bash 2、 git init 3、 git clone https://github.com/Tencent/Shadow.git 克隆github项目 git clone https://github.com/material-components/material-components-flutter-cod...原创 2019-07-08 23:10:14 · 382 阅读 · 0 评论 -
github 上传项目
提交自己的项目 1、github.com上新建仓库 test 2、本机选择文件夹 git clone https://github.com/anymyna/test.git 3、初次使用需要配置邮箱和姓名 git config --global user.email "you@example.com" git config --global user.name "Y...原创 2019-08-03 00:33:03 · 114 阅读 · 0 评论 -
git config 配置命令
config 配置分为system、global和local(当前仓库),优先级依次 system global local变低。 查看系统config git config --system --list 查看当前用户(global)配置 git config --global --list 查看当前仓库配置信息 git config --local --list 增加配置项 git c...原创 2019-08-07 23:24:16 · 318 阅读 · 0 评论