What is Melody?

Melody is an open source content management system for bloggers and publishers where its community of users and contributors is its most important feature. We believe that a vibrant community is the foundation on which all successful products and services are built today.

We are now at the very beginning of that mission. There is much to do and we want you to join us!

Why Melody?

  • Community supported.
  • Secure, scalable and rock solid platform.
  • 100% Open Source. Forever.
  • Proven content management system.
  • Highly extensible and customizable

How Can I Participate?

As you may or may not know, Melody uses git and we love it. We use it so much, we thought we should share a bash recipe with you that helps us work more efficiently on the command line. The following recipe, when added to your .bashrc file, will allow you to use the TAB key to auto-complete any git commands, local branches and local remotes. Hit TAB twice and it will show you a list of possible matches. Very helpful.

# This command line completion script will handily autocomplete
# any git commands as well as any remotes and branches you have
# defined.
#
# Add this to your .bashrc file
complete -f -W "$(echo `git branch | sed -e s/[\ \*]//g | cut -f 1 -d ' ' | uniq`; \                                                                       
    echo `git remote | sed -e s/[\ \*]//g | cut -f 1 -d ' ' | uniq`; \                                                                                   
    echo `git | tail -23 | head -21 | cut -d ' ' -f 4`);" git
Close