- To run the program execute with python test.py
- program has dependencies of pillow and tkinter libraries
create a branch from this repo and make changes in that until ready to merge with master.
git checkout <user branch>
- Push the changes to own branch
git status
to check statusgit add <file>
to add all modified filesgit commit -m <message>
to commit added filesgit push
to push added/commited files
- Merge and push from master branch to master remote
git checkout master
git merge <user branch>
git push
- Go back to own branch
git checkout <user branch>
- Make sure local branch is updated
git add <files>
git commit -a -m <message>
git push
- Pull from Master branch
git checkout master
git pull
- Merge with Master from own branch and push
git checkout <user branch>
git merge master
git push