- Andreea Carp @AndreeaCamelia
- 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
- Anamaria Larisa Bala @AnamariaLarisa
- Simona-Rebeca Buse @SimonaRebeca
- Adrian Coneac @adrianconeac
- Mario-Razvan Cioara @MarioCioara
- Raluca-Andreea Cozma @ralucacozma
- Anamaria Larisa Bala @AnamariaLarisa
- Simona-Rebeca Buse @SimonaRebeca
- Adrian Coneac @adrianconeac
- Raul Cojocaru @raulcojocaru
- Robert Burdusel @robertb21
- Download and install git from here: https://git-scm.com/downloads
- Download and install VisualStudio2017 from here: http://ms.upt.ro/Blog/Category/DreamSpark
- 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 johndoe@example.com
- if you installed git for the first time, you need to configure it -
type these commands with your credentials
- 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
- Change to dev branch -
git checkout dev
- do not use master branch! - Open the project with VisualStudio
- Fetch changes made by others -
git pull origin dev
- 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
- That's all! 😃