Actions
Wiki » History » Revision 2
« Previous |
Revision 2/4
(diff)
| Next »
Denise DERRIEN-PÉDEN, 06/27/2017 11:24 AM
Comment utiliser Redmine¶
Documentation réservée aux membres d'IMT Atlantique :¶
- https://intranet.telecom-bretagne.eu/logistique/logistique_informatique/modes_d_emplois/redmine/
- https://formations.telecom-bretagne.eu/fad/course/view.php?id=23996
Documentation accessible à tous :¶
Logiciels de gestion de version¶
Exemples de jeu de commande pour recopier le dépôt en local, y ajouter le fichier bob, puis modifier ce même fichier.
SVN¶
svn co https://redmine-df.telecom-bretagne.eu/svn/test_charge cd test_charge/ touch bob svn add bob svn commit -m "0" echo "hello world" > bob svn commit -m "1"
GIT¶
git clone http://redmine-df.telecom-bretagne.eu/git/test_charge cd test_charge/ touch bob git add bob git commit -m "0" git push --set-upstream http://redmine-df.telecom-bretagne.eu/git/test_charge echo "hello world" > bob git commit -a -m "1" git push
Updated by Denise DERRIEN-PÉDEN over 7 years ago · 2 revisions