git
lozhyf
大的可以化小,用心可以把每件事情简单化,钱财乃身外物,没有钱寸步难行。
展开
-
git 生成ssh key的方法,太简单了,记录下
生成ssh key 输入: ssh-keygen -t rsa -C "你的邮箱" 复制ssh key 方法1: 输入 clip < ~/.ssh/id_rsa.pub 会自动复制ssh key,可以直接粘贴 方法2:在c/Users/Administrator/.ssh/id_rsa)文件找到直接复制 连接github 打开GitHub 进入setting找到ssh key并新建 然后测试连接是否成功 输入: ssh -T git@github.com...原创 2021-05-12 15:30:47 · 400 阅读 · 0 评论 -
gradle 实例代码
public class CompareSize{ private int max private int min public CompareSize(int max, int min) { this.max = max this.min = min } public int getMajor() { ...原创 2018-07-09 09:19:11 · 393 阅读 · 0 评论 -
git修改用户名和邮箱
用户名和邮箱的作用: 用户名和邮箱地址相当于你的身份标识,是本地Git客户端的一个变量,不会随着Git库而改变。 每次commit都会用用户名和邮箱纪录。 github的contributions跟你的邮箱是有关联的。 查看自己的用户名和邮箱地址: $ git config user.name $ git config user.email 修改自己的用户名和邮箱地址: $ git...原创 2018-07-11 09:28:00 · 238 阅读 · 12 评论 -
Your local changes to the following files would be overwritten by merge
error: Your local changes to the following files would be overwritten by merge:Please, commit your changes or stash them before you can merge.保留生产服务器上所做的改动,仅仅并入新配置项, git stash git pull git stash p...原创 2018-07-05 11:01:50 · 312 阅读 · 0 评论 -
git Unlink of file '.git/objects/pack/pack
git gc --autogit repack -d -l原创 2019-08-06 09:26:10 · 551 阅读 · 1 评论 -
git Unlink of file Failed. Should I try again?
git gc 解决原创 2019-08-28 10:48:54 · 388 阅读 · 0 评论