User login

contributing

Maintaining a Drupal project with Git: Vacating the master branch

If you've already been committing code to master, do this to start a new 7.x branch and kill off the code in the master branch so noone gets confused.

cd /path/to/repo
git checkout -b 7.x-1.x

git push origin 7.x-1.x

git checkout master
git rm -r *
echo "Real code is not kept on the master branch, to see the code: git checkout 7.x-1.x" > README.txt
git add README.txt
git commit -m "Add a README explaining that the master branch is empty."
git push origin master

Contributing to the Community for Joy and Gain (Design for Drupal Boston 2011 session proposal)

This proposed session didn't make it on the schedule, but we'll be perfecting this concept which we can't help but write about and take notes about and wax political about.

Contributing to the Community for Joy and Gain

Code for Contrib: When There's Not a Module for That

Presenters: mlncn, Stefan Freudenberg, misscs

You won't understand everything about module development this hour, or this week, this month, this year, or this decade.

That's why the approach here is to learn how to learn. Not simply, this is what , but what investigation or resource or secret guild of wizards was needed to gain that knowledge?

Gábor Hojtsy on why get involved with Drupal community

why really get involved, why not just use the software for free?

get to work on cool technology
get to work in an international team
get to show off your work and talent
get to travel
can also make money

Syndicate content