You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
565 B

  1. Vagrant --> Commande Virtualbox pour lancer une vm
  2. #Initialize a vagrant file (Create a template Vagrantfile)
  3. vagrant init
  4. # Démarrage de la vm en lisant le Vagrantfile
  5. vagrant up
  6. # Demarrer une session sur la VM
  7. vagrant ssh
  8. GIT
  9. # Initialize a git project
  10. git init
  11. # Add files from current directories
  12. git add .
  13. # Créer une première entrée
  14. git commit -a -m "first commit. added gitignore and readme files"
  15. # Créer une entrée pour gitea
  16. git add origin ssh://git@161.97.176.30:222/marax/test_nov.git
  17. # send repos on gitea
  18. git push -u origin master

Powered by TurnKey Linux.