Merge pull request #97 from chipironcin/master

Add tip for first commit in a branch
This commit is contained in:
hemanth.hm 2016-06-21 09:57:03 +05:30 committed by GitHub
commit 699b36eedf
2 changed files with 9 additions and 0 deletions

View File

@ -120,6 +120,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [Find lines matching the pattern (regex or string) in tracked files](#find-lines-matching-the-pattern-regex-or-string-in-tracked-files)
* [Clone a shallow copy of a repository](#clone-a-shallow-copy-of-a-repository)
* [Search Commit log across all branches for given text](#search-commit-log-across-all-branches-for-given-text)
* [Get first commit in a branch (from master)](#get-first-commit-in-a-branch-from-master)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -834,5 +835,10 @@ git clone https://github.com/user/repo.git --depth 1
git log --all --grep='<given-text>'
```
## Get first commit in a branch (from master)
```sh
git log master..<branch-name> --oneline | tail -1
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -364,4 +364,7 @@
}, {
"title": "Search Commit log across all branches for given text",
"tip": "git log --all --grep='<given-text>'"
}, {
"title": "Get first commit in a branch (from master)",
"tip": "git log master..<branch-name> --oneline | tail -1"
}]