# 分支的创建和合并
# git branch yourbranch
# git checkout yourbranch 切换到yourbranch
# 开发yourbranch分支,然后开发之后与master分支合并
# git checkout master
# git merge yourbranch
# git branch -d yourbranch 合并完后删除本地分支
from django.utils import timezone
print timezone.localtime(thetime) #thetime即为需要转换的时间
另外:django中获取当前时间不要用datetime.today(),要用timezone.now()