# File lib/repo.rb, line 141
        def getSuffixList()
            return @suffix_list if @suffix_list != nil

            @suffix_list = runGit("branch").split("\n").map(){|x|
                x=~ @branch_format ? 
                    /^\*?\s*#{@branch_format_raw}\/([a-zA-Z0-9_-]+)\s*$/.match(x)[-1] :
                    nil
            }.compact().uniq()

            return @suffix_list
        end