版本控制
小帆别吃糖
乐观开朗,积极向上,有追求有目标,热爱学习
展开
-
error: cannot open .git/FETCH_HEAD: Permission denied
git使用原创 2022-10-09 09:13:29 · 537 阅读 · 0 评论 -
git 免输入用户名密码
git 免输入用户名密码转载 2022-08-11 12:02:05 · 1246 阅读 · 0 评论 -
Unable to negotiate with 10.5.253.119 port 29418: no matching cipher found. Their offer: aes128-cbc,
编辑 /etc/ssh/ssh_config原创 2022-08-09 11:49:33 · 718 阅读 · 0 评论 -
git操作之pull拉取远程指定分支以及push推送到远程指定分支
fighting原创 2022-01-14 17:29:27 · 45360 阅读 · 2 评论 -
git使用常见问题
git默认的编辑器是nano,使用起来不易操作,下面介绍两种方法将git默认的编辑器修改为vim. git config --global core.editor vim .git/config文件,在core中添加 editor=vim即可。原创 2021-03-30 21:00:30 · 316 阅读 · 0 评论 -
Gerrit user guide
配置:git config remote.origin.push refs/heads/*:refs/for/* (修改目的地目录,以让gerrit系统检测到提交内容)git config --global user.name $user (配置提交者用户名,需与web界面登录用户名一致)git config --global user.email $emailaddress...原创 2019-11-06 11:21:53 · 306 阅读 · 0 评论 -
git常用命令及分支简介
1、git基本命令1)git add 将想要快照的内容写入缓存区2)git status -s "AM" 状态的意思是,这个文件在我们将它添加到缓存之后又有改动3)git commit -m '第一次版本提交' -m选项添加备注信息4)git clone url 使用 git clone 拷贝一个 Git 仓库到本地5)git diff 查看执行 git status 的结果的详细信息...转载 2018-08-16 14:41:52 · 259 阅读 · 0 评论