git flow feature start <branchname>
starts a new branch
git commit -am "commit message"
make commits as usual
git pull
from master branch, pull in latest changes from the repo (repeat often)
git pull origin <branchname>
git flow feature start <branchname>
starts a new branch
git commit -am "commit message"
make commits as usual
git pull
from master branch, pull in latest changes from the repo (repeat often)
git pull origin <branchname>
from datetime import date, time, datetime | |
import pytz | |
pacific = pytz.timezone('US/Pacific') | |
eastern = pytz.timezone('US/Eastern') | |
def get_naive_date_time(): | |
date_start = date(2016, 9, 16) | |
time_start = time(10, 0) |