This is the simulation project for the class CSI 4124
- Install git for Windows from https://git-scm.com/download/win
- In IntelliJ go to File > New > Project from Version Control > Git
- Git Repository URL: https://github.com/GabiRepare/SMTravel.git
- Clone
Install and clone Github tool on mac
- Run Terminal
- Type git to check if git is installed on your mac
- Create a GitHub folder on your machine
- navigate to the folder
- in the git website click on clone or download and copy link
- type the cmd ‘git clone ’
To create your branch:
git checkout -b YourBranch
When you have changes:
git add *
– stages every change you havegit commit -m “Write your commit message ”
– Commits changesgit push
– push changes into online branch.