GithubHelp home page GithubHelp logo

git-deploy's Introduction

#Git Auto Deployment Git duto deployment using POST deploy hooks that are offered by GitHub and BitBucket.


Install

  • create a directory for deployment control site
mkdir /var/www/deploy
cd /var/www/deploy
  • clone this repo
git clone https://github.com/golfer007/git-deploy.git .
  • setup apache/nginx/other web-server site (ex. deploy.some.site) to /var/www/deploy

Setup

  • rename deploy-config.example.php to deploy-config.php
  • fill deploy config with your repos
$repos = array(
    'examplerepo' => array(
		'master' => array(
            'branch' => 'master',
            'path' => '/path/to/local/master/code/'
        ),
		'develop' => array(
            'branch' => 'develop',
            'path' => '/path/to/local/develop/code/'
        )
	),
    
    'examplerepo2' => array(
		'master' => array(
            'branch' => 'master',
            'path' => '/path/to/local/master/code/'
        ),
		'develop' => array(
            'branch' => 'develop',
            'path' => '/path/to/local/develop/code/'
        )
	)
);

Private repos

  • create local ssh key
ssh-keygen -t rsa -f ~/.ssh/id_rsa -C 'Bitbucket deploy'
  • add public key as Deploy Key to your repo

More: https://confluence.atlassian.com/pages/viewpage.action?pageId=271943168

Usage

  • commit and push

Thank You

http://lkwdwrd.com/git-auto-deployment/

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.