随笔分类 -  git

摘要:git branch -m old_branch_name new_branch_name 阅读全文
posted @ 2018-11-28 15:50 Jello 阅读(306) 评论(0) 推荐(0) 编辑
摘要:一.背景 在服务器上克隆源码 二.解决 unset SSH_ASKPSS 阅读全文
posted @ 2018-11-05 17:06 Jello 阅读(1157) 评论(0) 推荐(0) 编辑
摘要:问题: 有以下commit: 323udd ede234 6e7s6e 要合并第一个和第二个commit 方法有二: 方法一 使用git rebase -i hash-id,-i表示以交互模式进行commit合并,hash-id指代某个commit,如 git rebase -i 6e7s6e (这 阅读全文
posted @ 2018-10-31 11:07 Jello 阅读(3325) 评论(0) 推荐(0) 编辑
摘要:只要加入-s参数即可自动加上Signed-off-by信息 阅读全文
posted @ 2018-10-26 16:10 Jello 阅读(7519) 评论(0) 推荐(2) 编辑
摘要:1.找到打入patch不成功的patch 从打入patch的失败信息可以找到 2.根据patch的index重新打入 patch,将可以合并的内容合并,冲突的部分单独生成文件 比如出问题patch的index为0023,那么就去.git/rebase_apply目录下可以找到,假如发生patch失败 阅读全文
posted @ 2018-10-25 11:43 Jello 阅读(808) 评论(0) 推荐(0) 编辑
摘要:1.git 克隆时重命名本地文件夹或目录 如:git clone https://github.com/torvalds/linux.git linux_kernel 2.git查看tag git tag 3.git切换到指定tag 如:git checkout v4.18 (v4.18为tag名称 阅读全文
posted @ 2018-09-28 11:05 Jello 阅读(163) 评论(0) 推荐(0) 编辑
摘要:一.环境 发行版:Ubuntu 18.04.1 LTS 代号:bionic 内核版本:4.15.0-30-generic 二.背景 git clone https://source.codeaurora.org/external/qoriq/qoriq-components/openwrt 输入以上 阅读全文
posted @ 2018-09-26 11:20 Jello 阅读(4958) 评论(0) 推荐(0) 编辑
摘要:环境:ubuntu16.04 方法:通过socks5代理并且使用http链接 步骤: 1.设置全局使用socks5代理,并且使用http传输 git config --global http.proxy socks5://localhost:1080 (1080是设置的本地socks5端口,根据自己 阅读全文
posted @ 2017-08-31 23:20 Jello 阅读(4526) 评论(0) 推荐(0) 编辑