Posts in "Git"

35 posts in Git

ColdFusion Git Heroku Railo

Here is a short screencast showing how to deploy Railo on Heroku. This screencast assumes you have done Steps 1 - 3. Step 1: Sign up Step 2: Install the Heroku Toolbelt Step 3: Login Step 4: Deploy an application

Resources ColdFusion on...

ColdFusion Git Heroku OpenBD

Here is a short screencast showing how to deploy OpenBD on Heroku. This screencast assumes you have done Steps 1 - 3. Step 1: Sign up Step 2: Install the Heroku Toolbelt Step 3: Login Step 4: Deploy an application

Resources ColdFusion on...

Git Github

The title is a little facetious but I do think Github collaberation is not being taken advantage of in the ColdFusion community. Sure some CFML-ers like Mark Mandel , Luis Majano , and Marc Esher are using github. ColdFusion projects like ValidateThis , FW1 , and MuraCMS are on it. ColdFusion Koans...

Git

I blogged about " Git Performance Commands " before. Basically these commands are spring cleaning for your git repository. I run them occasionally at work. I love chaining git commands together so here are the commands chained. git fsck --unreachable && git reflog expire --expire=0 --all && git...

ColdFusion Git

Fusion Authority posted " What's Hot? What's Not? Essential Tools ". Please feel free to do your own post over what tools do you use regularly to enhance your productivity (and why)? I was honored to provide my tools for the Fusion Authority post. It is a pleasure working with Judith Dinowitz. I...

Ant Git

The JGit project from Eclipse has been working on Eclipse and Git integration. Their user guide mentions an ant task but doesn't show where to download the needed jars. If you knew a little java, you could grab the source and compile a couple from jgit's github account . I googled around and found...

ColdFusion Git Github

Why Git? Why Change? - The Online ColdFusion Meetup (Alpharetta, GA) - Meetup Mark your calendar for July 21st 6pm ET , Matthew McCullogh will be presenting at the Online ColdFusion Meetup . He is a Git Rockstar/Trainer with regular 1 day courses and O'Reilly training videos . Title: Why Git? Why...

CFWheels ColdFusion Git Github

In this blog series I will be walking through how to contribute to an open source project on GitHub . I will assume you: Created a free GitHub account Set up Git (includes connecting to github) First we will fork and setup a local repos of the CFWheels project at...

Git

I have a .bat file with these git commands in it which I run once in awhile to cleanup/improve performance. In my git bash, I drop the bat and the run the batch. git fsck --unreachable git reflog expire --expire=0 --all git repack -a -d -l git prune git gc --aggressive Here is a brief discription...

Git

Normal 0 false false false EN-US X-NONE X-NONE <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" DefSemiHidden="true" DefQFormat="false" DefPriority="99" LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true"...

ColdFusion Git

I received an email about switching to git and local development. Mallory was gracious enough to give me permission to post the original email and my response. I hope this helps other looking to move to git along with local development. ------------------------------------------------ Your Name:...

ColdFusion Git Github

Two ColdFusion & Github Weekly updates in a row! Where to start? Well, CFMeetup: GIT for Dummies and the slightly more enlightened by Tim Cunningham is a great place. It was recorded yesterday. I didn't attend but will watch it this weekend. Railo announced they are doing their nightly builds and...

ColdFusion Git Github

It has been over a busy month since the last ColdFusion and Github update. A lot has transpired. CFUnited's keynote by Adam Lehman and Terry Ryan , highlighted Github adding ColdFusion as a language for one of the numerous ColdFusion highlights over the last year. Terry demo-ed and announced...

ColdFusion Builder Git Github

First ColdFusion & Github update in a while, I was fishing last week in Northern Minnesota so missed two Fridays. Github now has the concept of organizations to simplify management of group-owned repositories. Github would like feedback from Windows users . Next week, July 13, 2010, there will be...

ColdFusion Git Github MXUnit

ColdFusion is hanging steady at the 29th most popular language on Github . Big news on the ColdFusion/Github front is FW/1 . I didn't catch an official announcement but it seems FW/1 is using github for their central code repository/site. Github's ticket system is setup and allowing people to...

ColdFusion Git Github

ColdFusion dropped several spots to 30 for Github Language popularity. DZone released a very well done Refcardz title " Getting Started with Git ". Github celebrated it's 2nd Birthday . I attended a Github East Cost Tour gathering if one is in your area I recommend swinging by for a few drinks. I...

ColdFusion Git Github

ColdFusion moved up another spot in the Github Language popularity to 29th. I am hoping the momentum keeps up. Github announced it has a commit about every second compared to Google Code which has a commit about every 5 seconds. No forking again for ColdFusion. This maybe the CF Community still...

ColdFusion Git Github

I will be switching the Github & ColdFusion Weekly Update to Sunday so I don't miss any activity during the weekend. Some noteworthy events: Terrence Ryan , Platform Evangelist for Adobe, opened a Github account and has been very busy starting four repositories. Bill Shelton created a respotiory...

CFWheels ColdFusion Git Github

I have been touting Github for ColdFusion open source projects. I have a great example of why. Bob Silverberg has been working on ValidateThis for Wheels. This consists of two projects, the ValidateThis framework and a ValidateThis Wheels plugin . He forked my repository of the plugin and made a...

ColdFusion Git

I started a Head First ColdFusion book to submit to Head First . If anyone is interested in contributing, it is using markdown and on GitHub . The idea is based on the Pro Git book using the same technique .

CFWheels ColdFusion Git

There is an interesting thread going on with the CFWheels google group over switching to git . Does it really matter to community members what source control the project is using? Subversion is locked down to only committers who have access, so any community changes come via patches. Maybe using...

ColdFusion Git

This is a series over using Riaforge with Git and GitHub . So far we installed some software , next we will register for a free GitHub, create a repository, and clone it. Registering will only take a couple seconds. Go to the signup page . Fill out the information but skip the SSH Public Key field....

Git

Git for Subversion users, Part 1: Getting started Git gets demystified for Subversion version control system users Summary: Distributed version control systems (DVCSs) offer a number of advantages over centralized VCSs, and for Subversion users looking to explore this model, Git is a great place to...

ColdFusion Git

I really enjoy ColdFusion but I am frustrated seeing tools in other programming languages like metric testing ( NDepend ), code coverage ( Emma ), and coding standards ( Checkstyle ). None of these tools are new. They are immensely helpful, but not really available in CFML . That being said, I feel...