(1) 输入 git log -g ,找回之前提交的commit,并记下commit_id。(可以通过键盘上下键翻看所有的记录)(2) git branch newbranch commit_id(3) 切换到newbranch分支,检查文件是否存在
温馨...
苏 demo
5年前 (2020-03-25)
2930℃
1喜欢
commit sample:<type>(scope):<subject>//空一行<body>
示例:feat 销退差异确认: 新增销退差异确认功能//空一行 \n 略略路….详细描述信息说明信息补充:type 为必须项,用于说明属于哪种类...
苏 demo
5年前 (2020-03-07)
3318℃
2喜欢
背景描述:
最近在项目开发过程中,经常出现一个功能模块没有完成,需要被打断去合并其他代码的问题。平日里自己没有注意,一般都会暂时commit 一次,然后在处理代码合并,最后推送。但是日志有时候就会写的很随意,例如t/暂存/调整等。这样在team开发过程中就会给其他人带来阅...
苏 demo
5年前 (2019-09-24)
2589℃
1喜欢
清理代码分支的时候,手贱,将一个功能分支删掉了(以为没用。。。)
后来回想,才想起来有部分改动还没有合并到主开发分支(心中是千万头神兽羊驼狂奔而过) 。。。
紧急处理git 误删(分明有意的),快速恢复代码。
1.根据git日志,查找commitID
...
苏 demo
6年前 (2019-05-14)
2183℃
0喜欢
最近在一台新机器上进行git clone项目时,遇到问题SSL connect error
错误信息:Cloning into ‘web-msg-sender’…fatal: unable to access ‘https://gith...
苏 demo
6年前 (2018-12-11)
3164℃
0喜欢
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push –set-upstream...
苏 demo
6年前 (2018-07-24)
2930℃
0喜欢
早上在clone 一个git 版本库的时候,不小心在没有输入密码的情况下敲了下回车。。结果小乌龟客户端认为我的密码 是空的,自动去git clone 代码 了,并且保存了认证数据。
实际我的git 库里是有设置密码的,于是楼主想重置掉这个认证数据。
找了很多办法,包括右键清除认...
苏 demo
7年前 (2018-05-13)
8623℃
0喜欢
在server{}段内增加
代码如下:
location ~ /\. {
deny all;
}
变更为:
location ^~ /.git {
return 403;
}
转载请注明:苏demo的别样人生 » nginx禁止访问.git文件的设置
...
苏 demo
7年前 (2018-04-12)
2539℃
0喜欢
在使用git的时候,由于本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以必须要让github仓库认证你SSH key,在此之前,必须要生成SSH key。
生成步骤
生成之前,可以看看是否已经有了该文件,如果有了,则可以直接跳过步骤1.
查看目录: c:\wi...
苏 demo
7年前 (2018-03-24)
2492℃
0喜欢
背景描述:
git切换到zhuanti 分支,进行代码pull的时候 提示报错;
在图形界面中,执行拉取操作时,出现下面的错误。
错误提示:
You asked to pull from the remote ‘origin’, but did not s...
苏 demo
7年前 (2017-08-01)
9404℃
9喜欢