TAGL/TP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
==Séance 1== |
|||
Créer un dépôt Git local (bare) |
|||
<pre> |
|||
mkdir tagl |
|||
cd tagl |
|||
mkdir testgit |
|||
cd testgit |
|||
git init --bare |
|||
cd .. |
|||
git clone testgit testgit-work |
|||
cd testgit-work |
|||
echo hello > readme.rst |
|||
git add readme.rst |
|||
git commit |
|||
git push |
|||
</pre> |
|||
Installer dans votre Eclipse le plugin ReST Editor depuis le [https://marketplace.eclipse.org/content/rest-editor Marketplace Eclipse] |
|||
| Line 24: | Line 42: | ||
Modifier '''.travis.yml''' pour ''mvn clean install'' (Commit/Push) |
Modifier '''.travis.yml''' pour ''mvn clean install'' (Commit/Push) |
||
==Séance 2== |
|||
Revision as of 10:28, 6 February 2014
Séance 1
Créer un dépôt Git local (bare)
mkdir tagl cd tagl mkdir testgit cd testgit git init --bare cd .. git clone testgit testgit-work cd testgit-work echo hello > readme.rst git add readme.rst git commit git push
Installer dans votre Eclipse le plugin ReST Editor depuis le Marketplace Eclipse
Créer compte individuel sur GitHub https://github.com
Forker le projet TAGL (url) cron4j (2.5.5)
Ajouter un collaborateur au projet forké
Activer de Travis-CI
Commit/Push .travis.yml pour Ant (depuis un gist)
Créer cron4j-mvn (layout + pom.xml)
Modifier .travis.yml pour mvn -DskipTests=true clean install (Commit/Push)
Tests unitaires du i.s.c.CronParser (JUnit 4)
Modifier .travis.yml pour mvn clean install (Commit/Push)