Git

[Gandi][Simple Hosting] Installation de Django 1.8

[Gandi][Simple Hosting] Installation de Django 1.8 Python 2.7.6 1) Répertoire de travail : [~] ➔ mkdir -p PYTHON/DJANGO/vhost/ [~] ➔ cd PYTHON/DJANGO/vhost/ [~/PYTHON/DJANGO/vhost] ➔ 2) Clonage d’un exemple basique d’une application Django : [~/PYTHON/DJANGO/vhost] ➔ git clone https://github.com/jpetazzo/django-on-gpaas.git default Clonage dans ‘default’… remote: Counting objects: 47, done. remote: Compressing objects: 100% (30/30), done. remote: Total […]

[Git] Remplacer la branche origin

[Git] Remplacer la branche origin. 1) Afficher l’actuel branche origin : [~/ANDROID.rpg/classicrpg] ➔ git remote show origin * distante origin URL de rapatriement : https://github.com/pilotpol/classicrpg.git URL push : https://github.com/pilotpol/classicrpg.git Branche HEAD : master Branche distante : master suivi Branche locale configurée pour ‘git pull’ : master fusionne avec la distante master Référence locale configurée pour […]

Installation de Symfony 2.7 sur une instance Simple Hosting Php/Mysql

Installation de Symfony 2.7 sur une instance Simple Hosting Php/Mysql. Sur le station de développement : Distribution de travail : Ubuntu 14.04 LTS 1) Installation de ‘Symfony Installer’ [~] ➔ sudo curl -LsS http://symfony.com/installer -o /usr/local/bin/symfony [~] ➔ sudo chmod a+x /usr/local/bin/symfony [~] ➔ symfony Symfony Installer (1.1.7) … 2) Répertoire de travail : [~] […]

[Git] Créer un « remote repository » sur Github en ligne de commande

[Git] Créer un « remote repository » sur Github en ligne de commande. curl -u ‘USERNAME’ https://api.github.com/user/repos -d ‘{« name »: »REPOSITORY »}’

[Git] Modifier un commit antérieur

[Git] Modifier un commit antérieur. Contributeur : Joris M. 1) Sauvegarder les modifications en-cours : git stash 2) Chercher le commit précédent du commit que l’on veut modifier : git log 3) Se positionner sur ce précédent commit : git rebase –interactive eadffa4ee174b70583345 4) Remplacer « pick » par « edit » de la ligne du commit à modifier […]