File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 79
79
* [ List all the alias and configs.] ( https://github.com/git-tips/tips#list-all-the-alias-and-configs )
80
80
* [ Make git case sensitive.] ( https://github.com/git-tips/tips#make-git-case-sensitive )
81
81
* [ Auto correct typos.] ( https://github.com/git-tips/tips#auto-correct-typos )
82
+ * [ Check if the change was a part of a release.] ( https://github.com/git-tips/tips#check-if-the-change-was-a-part-of-a-release )
82
83
83
84
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
84
85
<!-- @doxie.inject end toc -->
@@ -545,5 +546,10 @@ git config --global core.ignorecase false
545
546
git config --global help.autocorrect 1
546
547
```
547
548
549
+ ## Check if the change was a part of a release.
550
+ ``` sh
551
+ git name-rev --name-only < SHA-1>
552
+ ```
553
+
548
554
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
549
555
<!-- @doxie.inject end -->
Original file line number Diff line number Diff line change 240
240
}, {
241
241
"title" : " Auto correct typos." ,
242
242
"tip" : " git config --global help.autocorrect 1"
243
+ }, {
244
+ "title" : " Check if the change was a part of a release." ,
245
+ "tip" : " git name-rev --name-only <SHA-1>"
243
246
}]
You can’t perform that action at this time.
0 commit comments