Skip to content

Latest commit

 

History

History
338 lines (257 loc) · 17 KB

collaborative-development-github-pantheon.md

File metadata and controls

338 lines (257 loc) · 17 KB
title description category authors date
Collaborative Development Using Github and Pantheon
Learn how to collaborate with your Pantheon team members using Github.
developing
drupal
wordpress
bmackinney
jessifischer
4/3/2015

While Pantheon provides Git repositories for all sites on the platform, many teams need to use an external repository hosted at a provider, like Github or BitBucket, as the canonical version of the site's codebase. This guide will show you how to get up and running using a Github account as the example, although the steps should be similar for any provider.

Git Repositories on Pantheon

The codebase for your site is stored in a Git repository. This includes our versions of Drupal or WordPress core, and all of the custom and contributed modules, plugins, and themes that work together to power your site. It doesn’t include the /sites/default/files/ or /wp-content/uploads/ directories, or your database.

This repository will be a clone of one of the upstreams running on the platform, usually Drupal 7 or WordPress, or one of their forks that our users manage as custom upstreams. Your site’s repository on our platform will track one of these upstream repositories as a Git remote. To see which repo your site is tracking, go to your Site Dashboard, click the Settings tab, then About site. The name of the upstream will be linked to the repository's hosted location.

These repositories control the common codebase for several sites. The most common change to an upstream is in the event of a core version release. These changes to the upstream repository become available to the sites running them within a day. For individual sites, using Github to collaborate on custom code is often a requirement for teams. In order to do so, you’ll need a quick and efficient way to keep your Pantheon repo in sync with Github.

This guide will show you the basics for collaborating with others if your site:

  • is only on Pantheon and you’re moving development to Github
  • exists on Github and you want to deploy to Pantheon
  • isn’t using Git
  • doesn’t yet exist

Synchronizing Existing Pantheon Sites to Github

From your Site Dashboard's Development environment, copy the Git SSH clone URL and clone it to your local machine. Your local copy will now track the Pantheon repository as origin.

$ git clone <ssh://[email protected]:2222/~/repository.git d7-ci>
Cloning into 'd7-ci'...
remote: Counting objects: 298630, done.
remote: Compressing objects: 100% (59210/59210), done.
remote: Total 298630 (delta 208616), reused 298143 (delta 208186)
Receiving objects: 100% (298630/298630), 67.23 MiB | 479.00 KiB/s, done.
Resolving deltas: 100% (208616/208616), done.
Checking connectivity... done.

Change directory into the site repository, and verify your connection to the Pantheon server.

$ cd d7-ci
$ git remote -v
origin	ssh://[email protected]:2222/~/repository.git (fetch)
origin	ssh://[email protected]:2222/~/repository.git (push)

The output lists "origin" as the the remote with Pantheon SSH Git clone connection information as it's address.

Create a Repository on Github

Create a Repository on GitHub

Add the Github Repository as a Remote

As long as you keep “Initialize this repository with a README” unchecked, you will see options for adding code to your repo. You need to replace the word “origin” in this case, because your local clone is already tracking the Pantheon site repository as origin.

Push an existing repo to GitHub

I chose to name this remote "github".

$ git remote add github [email protected]:pantheon-learning/d7-ci.git
$ git remote -v
github	[email protected]:pantheon-learning/d7-ci.git (fetch)
github	[email protected]:pantheon-learning/d7-ci.git (push)
origin	ssh://[email protected]:2222/~/repository.git (fetch)
origin	ssh://[email protected]:2222/~/repository.git (push)

Note: Another option is to add another push URL for origin: git remote set-url --add origin [email protected]:pantheon-learning/d7-ci.git

What's nice about this is then every time you do a git push origin code will be pushed to Github and Pantheon simultaneously.

Push the Pantheon Site's Codebase to Github

$ git push -u github master
Writing objects: 100% (120046/120046), 31.88 MiB | 3.26 MiB/s, done.
Total 120046 (delta 89679), reused 120039 (delta 89679)
To [email protected]:pantheon-learning/d7-ci.git
 * [new branch]      master -> master
Branch master set up to track remote branch master from github.

The repository on Github now has all of the same code as my site.

GitHub repo same as site

Synchronizing Existing Site Repositories on Github With Pantheon

This process will follow the same general procedures as moving your repo from Pantheon to Github, in reverse.

Create the Site

At our site creation page, name your site. On the next page, /sites/UUID/configure select the upstream your site will track. If you need a custom upstream, like one managed by your organization, or one of the public upstreams running on the platform, it is important that you create it as a new site based on that upstream. This will set the upstream for your site, which cannot be changed.

Pull in Pantheon's Upstream

As long as you've chosen the same codebase (Drupal 7, WordPress, Commerce Kickstart, etc.) as the starting point of your Pantheon site, you can use Git to import your existing code with your commit history intact, while also preserving Pantheon's upstream update function.

  1. From your Site Dashboard, go to the Dev environment.
  2. Click Settings, then select About Site.
  3. Copy the Upstream URL and modify it by replacing https with git and appending .git master to the end of the string. For example, a site running Drupal 7, https://github.com/pantheon-systems/drops-7 will change to git://github.com/pantheon-systems/drops-7.git master in the Git command used to pull in the upstream.
  4. At the root of your local clone of the site repository, run git pull --no-rebase -Xtheirs --squash git://github.com/pantheon-systems/drops-7.git master, replacing the upstream URL with the one you copied from the Site Dashboard and modified, if you need something other than Drupal 7.

Once executed, that command will pull in the Pantheon core files, but not commit them; you will be able to do a final review before doing so. You will see this message when it's done:

Squash commit -- not updating HEAD
Automatic merge went well; stopped before committing as requested

Git Connection Info

Add the Pantheon Site as a Git Remote

  1. From your terminal within the site directory, use the Git remote add command with an alias to make sure you know when you are moving code to or from Pantheon.
git remote add pantheon ssh://codeserver.dev.{site-id}@codeserver.dev.{site-id}.drush.in:2222/~/repository.git pantheon-new-site-import
  1. Run a Git add and commit to prepare the Pantheon core merge for pushing to the repository: git add -A git commit -m "Adding Pantheon core files"
  2. Now pull from your Pantheon repository master branch: git pull pantheon master. Handle any conflicts as needed.
  3. Git push back to your Pantheon site repository: git push pantheon master
  4. Go to the Code tab of your Dev environment. You should now see your site's pre-existing code commit history, plus the most recent commits adding Pantheon's core files.
  5. Push the repo with the newly updated core files to Github. $ git push origin master

Pantheon Dashboard with Commit Messages

Developing in Sync

For this example, we’ll create the settings.php file.

$ cd sites/default
$ touch settings.php

Add the file to version control and Push to both remotes:

$ git status
On branch master
Your branch is up-to-date with 'github/master'.
Untracked files:
  (use "git add <file>..." to include in what will be committed)

	settings.php

nothing added to commit but untracked files present (use "git add" to track)
$ git add .
$ git status
On branch master
Your branch is up-to-date with 'github/master'.
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

	new file:   settings.php

$ git commit -m “Create settings.php”
master b802550] Create settings.php
 1 file changed, 577 insertions(+)
 create mode 100644 sites/default/settings.php

You’re ready to push the change to Github and Pantheon.

 $ git push github master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 384 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
To [email protected]:pantheon-learning/d7-ci.git
   fe267cb..b802550  master -> master

$ git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 384 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
remote:
remote: PANTHEON NOTICE:
remote:
remote: Environment 'dev' (branch: master) is currently in SFTP mode.
remote: It cannot recieve git pushes until you disable this via the Pantheon dashboard.
remote: If you are trying to push changes to a different branch or environment, try:
remote:     git push origin [branch-name]
remote:
To ssh://codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88@codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88.drush.in:2222/~/repository.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'ssh://codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88@codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88.drush.in:2222/~/repository.git'

This push to Pantheon failed, because the Development environment was in SFTP mode.

Connection Mode set to SFTP

Switch the connection mode to Git by clicking on the toggle, or via the command line:

$ terminus site connection-mode --site=d7-ci --env=dev --set=git

Connection Mode set to Git

Push to Pantheon:

$ git push origin master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 384 bytes | 0 bytes/s, done.
Total 4 (delta 2), reused 0 (delta 0)
To ssh://codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88@codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88.drush.in:2222/~/repository.git
   fe267cb..b802550  master -> master

Commit deployed to Pantheon Dashboard

The Github repo and Pantheon site both now have a settings.php file. This will allow for environment-specific configuration to enable modules via remote Drush calls and other essential functionality.

Before I continue having to remember which remote, Github or Pantheon, is the "origin", I'm going to rename my remote from origin to pantheon and verify.

$ git remote rename origin pantheon
$ git remote -v
github	[email protected]:pantheon-learning/d7-ci.git (fetch)
github	[email protected]:pantheon-learning/d7-ci.git (push)
pantheon	ssh://codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88@codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88.drush.in:2222/~/repository.git (fetch)
pantheon	ssh://codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88@codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88.drush.in:2222/~/repository.git (push)

Feature Branching

Working with teams on Github requires a branching strategy. We are fans of Github flow and continuous integration here at Pantheon. In order to collaborate, I need to add my colleagues to the site we’re developing, both on Github and on Pantheon. Locally, our codebase is in sync with both repositories. In order to start working on a new feature, we’ll checkout a branch. Since my site is associated with a supporting organization that has Multidev, I can test out any feature in a cloud development environment. These environments have an 11-character limit for branch names, so I'm choosing to use short branch names for my feature branches.

$ git checkout -b configs
Switched to a new branch 'configs']

I’m responsible for adding the configuration management module as a feature of this site and tracking initial configurations with it. In my local environment, I'm going to download the module and its dependencies: $ drush dl configuration-7.x-2.x-dev xautoload After I enable the module, I test and verify that the module is working. Next I'll add, commit, and push to branches on Pantheon and Github.

$ git status
On branch configs
Untracked files:
  (use "git add <file>..." to include in what will be committed)

	sites/all/modules/configuration/
	sites/all/modules/xautoload/

nothing added to commit but untracked files present (use "git add" to track)
Brians-Pantheon-Mac-2:d7-ci brian$ git add .
Brians-Pantheon-Mac-2:d7-ci brian$ git commit -m "install configuration and xautoload"
[configs 0f85fbd] install configuration and xautoload
 284 files changed, 25781 insertions(+)
$ git push pantheon configs
Counting objects: 365, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (325/325), done.
Writing objects: 100% (365/365), 199.00 KiB | 0 bytes/s, done.
Total 365 (delta 70), reused 0 (delta 0)
remote:
remote: PANTHEON NOTICE:
remote:
remote: Skipping code sync, no cloud development environments were found for branch "configs".
remote:
To ssh://codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88@codeserver.dev.59b2dd69-2305-4ca2-a745-4f00e4100c88.drush.in:2222/~/repository.git
 * [new branch]      configs -> configs

The platform is telling me that no cloud development environments (CDEs) were found associated with the Git branch. I can stay on the command-line and quickly create one with Terminus.

$ terminus site create-env --site=d7-ci --env=configs --from-env=dev

New environment named configs The module will now be available to activate and test on Pantheon for my colleagues to experience. I'll add a link to the module's configuration page on the CDE on my Github pull request.

New environment configuration admin url

Create Pull Request

We’re now ready to create a pull request on GitHub. The pull request can include things like links to the CDE where the team can view the effects of the commits, @-mentions of team members, and a list of tasks for team members to perform before merging.

Pull request for configs branch

Timani completed the tasks, we discussed a bit in person, and he merged the PR.

Merged pull request for configs branch

Deploy to Pantheon

Locally, I now checkout the master branch, pull from github master, and push to pantheon master.

$ git checkout master
$ git pull github master
$ git push pantheom master

Merged PR commit in the Pantheon dashboard

Optional Tools to Optimize Workflows

Once we have the basic setup, there are other options to further optimize workflows:

  • A Continuous Integration Server like Jenkins, TravisCI, Bamboo, or CircleCI
  • A suite of automated acceptance tests using Behat or PHPUnit

These tools will allow your team to fully implement continuous delivery with automated testing and continuous integration.

Additional Resources

Starting with Git

Git FAQs