2019年11月15日
摘要: 如何将文件提交到git服务器 1.打开 Git Bash 命令 1. git add ‘文件名’ git add . git add --all git add -A 把咱们的文件存放在一个神秘的地方 >>>> 暂存区 (暂存区在本机) 2.把文件提交到仓库中去。 命令 1 . git commit 阅读全文
posted @ 2019-11-15 09:31 __"仅此少年ღ 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 1.安装Git Window:到Git官网下载安装:https://git-scm.com/downloads 2.配置全局用户Name和E-mail $ git config --global user.name "Your Name"$ git config --global user.emai 阅读全文
posted @ 2019-11-15 09:26 __"仅此少年ღ 阅读(131) 评论(0) 推荐(0) 编辑