Merge pull request #59 from NamPNQ/patch-1

List all branch is WIP
This commit is contained in:
hemanth.hm 2016-06-07 09:39:44 +05:30
commit 2e647b5ea9
2 changed files with 9 additions and 0 deletions

View File

@ -104,6 +104,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [Extract file from another branch.](#extract-file-from-another-branch)
* [List only the root and merge commits.](#list-only-the-root-and-merge-commits)
* [Merge previous two commits into one.](#merge-previous-two-commits-into-one)
* [List all branch is WIP](#list-all-branch-is-wip)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -697,5 +698,10 @@ git log --first-parent
git rebase --interactive HEAD~2
```
## List all branch is WIP
```sh
git checkout master && git branch --no-merged
```
<!-- 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

@ -311,4 +311,7 @@
}, {
"title": "Merge previous two commits into one.",
"tip": "git rebase --interactive HEAD~2"
}, {
"title": "List all branch is WIP",
"tip": "git checkout master && git branch --no-merged"
}]