File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
104
104
* [ Extract file from another branch.] ( #extract-file-from-another-branch )
105
105
* [ List only the root and merge commits.] ( #list-only-the-root-and-merge-commits )
106
106
* [ Merge previous two commits into one.] ( #merge-previous-two-commits-into-one )
107
+ * [ List all branch is WIP] ( #list-all-branch-is-wip )
107
108
108
109
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
109
110
<!-- @doxie.inject end toc -->
@@ -697,5 +698,10 @@ git log --first-parent
697
698
git rebase --interactive HEAD~2
698
699
```
699
700
701
+ ## List all branch is WIP
702
+ ``` sh
703
+ git checkout master && git branch --no-merged
704
+ ```
705
+
700
706
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
701
707
<!-- @doxie.inject end -->
Original file line number Diff line number Diff line change 311
311
}, {
312
312
"title" : " Merge previous two commits into one." ,
313
313
"tip" : " git rebase --interactive HEAD~2"
314
+ }, {
315
+ "title" : " List all branch is WIP" ,
316
+ "tip" : " git checkout master && git branch --no-merged"
314
317
}]
You can’t perform that action at this time.
0 commit comments