Skip to content

Application used for simulating road traffic and coordinate traffic lights in real-time.

License

Notifications You must be signed in to change notification settings

adrianB3/Proiect9_PC_UndaVerde

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proiect9_PC_UndaVerde

Project Manager

  • Andreea Carp @AndreeaCamelia

DevTeam

  • Andrei Chirap @AndreiChirap
  • Adrian-Gabriel Balanescu @adrianB3
  • Gabriel Bizdoc @GabiBVG
  • Raul-Adrian Chincea @RaulChincea
  • Diana Dalea @dianadalea
  • Andreea Balasoiu @AndreeaBalasoiu
  • Alina Bacalete @AlinaBacalete
  • Voicu Carole @carolevoicu

DesignTeam

  • Anamaria Larisa Bala @AnamariaLarisa
  • Simona-Rebeca Buse @SimonaRebeca
  • Adrian Coneac @adrianconeac
  • Mario-Razvan Cioara @MarioCioara
  • Raluca-Andreea Cozma @ralucacozma

DocsTeam

  • Anamaria Larisa Bala @AnamariaLarisa
  • Simona-Rebeca Buse @SimonaRebeca
  • Adrian Coneac @adrianconeac
  • Raul Cojocaru @raulcojocaru
  • Robert Burdusel @robertb21

How to open project and start working:

  1. Download and install git from here: https://git-scm.com/downloads
  2. Download and install VisualStudio2017 from here: http://ms.upt.ro/Blog/Category/DreamSpark
  • make sure to install this components with VS2017 VSInstall
  1. Clone repository
  • make a new folder wherever you want
  • inside that folder right-click and select 'Git Bash here'
    • if you installed git for the first time, you need to configure it - type these commands with your credentials
        git config --global user.name "Your username"
        git config --global user.email [email protected]
      
  • clone the repository - git clone https://github.com/adrianB3/Proiect9_PC_UndaVerde
  • change into git directory - cd Proiect9_PC_UndaVerde
  • check it - git remote -v
  1. Change to dev branch - git checkout dev - do not use master branch!
  2. Open the project with VisualStudio
  3. Fetch changes made by others - git pull origin dev
  4. After you made your changes to the project, push those changes to the repository (on the dev branch or your own branch)
git add .
git commit -m "commit message"
git push origin dev
  1. That's all! 😃