336 bytes added ,  12 October 2017
→‎Merge a branch: List merged branches
→‎Ignore files: add a section for getting a list of folders and files that are assume-unchanged
→‎Merge a branch: List merged branches
Line 120: Line 120:


Merges <branchname> onto autonotif branch
Merges <branchname> onto autonotif branch
== List merged branches ==
List branches merged into master
<source lang="bash">
$ git branch --merged master
</source>
List branches merged into HEAD (i.e. tip of current branch)
<source lang="bash">
$ git branch --merged
</source>
List branches that have not been merged
<source lang="bash">
$ git branch --no-merged
</source>


== Remove a tag ==
== Remove a tag ==