This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
info:code:git [2017-11-13 11:49] andunix |
info:code:git [2018-12-06 10:07] (current) andunix |
||
|---|---|---|---|
| Line 18: | Line 18: | ||
| === Delete Remote Branch === | === Delete Remote Branch === | ||
| git push origin -d BRANCH | git push origin -d BRANCH | ||
| + | === List unmerges branches === | ||
| + | List branches with commits, which are not in branch REF: | ||
| + | git branch --no-merged REF | ||
| + | For example, list unmerged branches, which are not in '' | ||
| + | git branch --no-merged develop | ||
| === List unmerges commits === | === List unmerges commits === | ||
| List commits in branch BRANCH, which are not in branch REF: | List commits in branch BRANCH, which are not in branch REF: | ||