Git

Install and Use PHP Composer on Ubuntu 16.04

Install and Use PHP Composer on Ubuntu 16.04 Table of Contents Introduction Composer vs PEAR Requirements Install PHP Composer Using PHP Composer Introduction PHP Composer is a package management system for PHP which prevents users from having to «reinvent the wheel» when it comes to commonly-used website components like user authentication or database management. Composer […]

Install and Use PHP Composer on Ubuntu 16.04 Leer más »

Clone git moodle , wordpress , zend , lavarel , program-o, codeignter

  first git clone https://github.com/laravel/laravel.git git clone  https://github.com/bcit-ci/CodeIgniter.git git clone https://github.com/Program-O/Program-O.git git clone https://github.com/Program-O/Program-O.git sudo apt-get install git   https://github.com/zendframework/zendframework.git   composer https://www.1and1.com/cloud-community/learn/application/php/install-and-use-php-composer-on-ubuntu-1604/ sudo apt-get install curl   sudo apt-get install curl     Obtención de Git (Windows, OSX, Linux y otros) El soporte para Git estaba, hasta hace muy poco tiempo, principalmente confinado a

Clone git moodle , wordpress , zend , lavarel , program-o, codeignter Leer más »

Git Cheat Sheet – cheat sheets

Git Cheat Sheet Cheat Sheet for the Git Distributed Version Control System. Based on https://github.com/AlexZeitler/gitcheatsheet and http://www.git-tower.com/files/cheatsheet/Git_Cheat_Sheet_grey.pdf Create Git Repository From existing direct­ory cd proje­ct_dir git init git add . From other reposi­tory git clone exist­ing­_dir new_dir git clone git:/­/gi­thu­b.c­om/­use­r/r­epo.git git clone https­://­git­hub.co­m/u­ser­/re­po.git Git – Local Changes Changed in working direct­ory git status Tracked file changes git diff Add changed

Git Cheat Sheet – cheat sheets Leer más »

¿Qué es git-flow?

http://aprendegit.com/que-es-git-flow/ ¿Qué es git-flow? 14 respuestas Empezamos una serie de artículos sobre git-flow, conjunto de extensiones de git que facilitan la gestión de ramas y flujos de trabajo. Si quieres seguir esta serie, debes disponer de una máquina con git instalado: Windows: msysgit que puedes descargar de este enlace Mac: a través de homebrew o macports

¿Qué es git-flow? Leer más »

A successful Git branching model

Home Posts About A successful Git branching model By Vincent Driessen on Tuesday, January 05, 2010 All the tools your team needs in one place. Slack: Where work happens.ads via Carbon In this post I present the development model that I’ve introduced for some of my projects (both at work and private) about a year

A successful Git branching model Leer más »

Git keep calm and reset –hard

=================================================== $ git reset –hard A $ git reset –soft @{1} # (or ORIG_HEAD), which is D $ git commit =================================================== $ git revert –no-commit D $ git revert –no-commit C $ git revert –no-commit B $ git commit -m ‘the commit message’ listado total de commit push enviados al respositorio git shortlog -s -n

Git keep calm and reset –hard Leer más »

PHPUnit

Getting Started with PHPUnit Download We distribute a PHP Archive (PHAR) that contains everything you need in order to use PHPUnit. Simply download it from here, make it executable, and put it into your $PATH, for instance: ➜ wget https://phar.phpunit.de/phpunit.phar ➜ chmod +x phpunit.phar ➜ sudo mv phpunit.phar /usr/local/bin/phpunit ➜ phpunit –version PHPUnit 6.1.0 by

PHPUnit Leer más »

Git

software de control de versiones diseñado por Linus Torvalds, pensando en la eficiencia y la confiabilidad del mantenimiento de versiones de aplicaciones cuando éstas tienen un gran número de archivos de código fuente. 1. Mostrar las diferencias existentes entre master y otro branch.: git diff master..branch Sin más, esto es algo que uso constantemente para revisar el trabajo

Git Leer más »