2020年6月5日
摘要: cd git_test git init git_project cd tit_project cp D:/readme . git add readme git status git commit -m 'Add redadme'git log git add 将文件加入到暂存区 git add 阅读全文
posted @ 2020-06-05 16:10 清明-心若淡定 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 在很多Git配置教程中,多是安装完毕后就告诉大家要配置用户名和邮箱,但是这个配置是保存在哪里呢,配置后面的参数有什么不同呢,下面就具体说一说Git配置, Git配置文件种类 Git的配置文件在控制台中使用 git config 命令用来修改配置,Git配置级别有3种,分别存在不同的配置文件中: 1、 阅读全文
posted @ 2020-06-05 15:38 清明-心若淡定 阅读(2179) 评论(0) 推荐(0) 编辑
摘要: 下载地址: https://pc.qq.com/detail/13/detail_22693.html https://git-scm.com/ 安装参考: https://git-scm.com/book/zh/v2/%E8%B5%B7%E6%AD%A5-%E5%AE%89%E8%A3%85-Gi 阅读全文
posted @ 2020-06-05 15:16 清明-心若淡定 阅读(257) 评论(0) 推荐(0) 编辑
摘要: type User struct { Name string `json:"name,omitempty" bson:"name,omitempty"` Secret string `json:"-,omitempty" bson:"secret,omitempty"` } package bson 阅读全文
posted @ 2020-06-05 14:23 清明-心若淡定 阅读(2824) 评论(0) 推荐(0) 编辑