Skip to content

Instantly share code, notes, and snippets.

@rahulkrishnanfs
rahulkrishnanfs / gist:79b686a7f45ded308435688491441ed5
Last active January 29, 2017 16:52
Vagrantfile Example to create more that one VM using precise32 box
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "vagrant1" do |vagrant1|
@rahulkrishnanfs
rahulkrishnanfs / git-commands
Last active January 29, 2017 16:53
Useful git commands for developers
Development Tips:
git: 1) Copy files from one branch to another branch
syntax: $git show :/path/filename > /path/<filename>