A colaborative project with 2 member, where we build a simple calculator which does addition, subtraction, division and multiplication
- add_sub.py: which has addition and subtraction function code
- mul-div.py: which has multiplication and division function code
mkdir <file_name>
to create the foldercd <file name>
to go inside the foldergit init
, initializing folder as git repository- manually add all the files
git add .
to add all the files into git trackgit commit -m "<message>"
, it commits whatever is there in the trackgit remote add origin <GitHub repository link>
, builds connection between git and githubgit push --set-upstream origin master
, sends all the files from git to github.git pull
to pull the files which were uploaded by my team member to github