git init
git status
git add // Adding to the staging environment
git commit -m "message"
git push -u origin master
git pull origin master
source pytest-env/bin/activate
Let's say you are on the master branch and want to create a new branch to develop your web page. Here's what you'll do: Run git checkout -b . This command will automatically create a new branch and then 'check you out' on it, meaning git will move you to that branch, off of the master branch.
git branch
git remote add origin https://github.com/cubeton/mynewrepository.git