To manually git commit and push a project, run the following within a terminal session on the host:
First, create the project and make a change, then run the following commands:
kubectl logs <pod>
#to list containers
kubectl exec -it <pod> -c <tool-anaconda-platform-sync-XXXXXXX> -- /bin/sh
source activate lab_launch
git status
#to ensure untracked changes are registered
git add .
git commit -m 'some commit name'
git log
#to get commit ids
Copy the latest commit id
git tag
#to get tag history
git tag -a <new tag number> <latest commit id>
git checkout master
git branch to get branch id
git merge <username>-xxxxxxxxxx
git push origin master