搭建项目框架
当前项目分支一共有3个,分别为master、dev、it,当前在it分支上工作
在克隆的目录下创建django项目。 如果使用虚拟环境需要先进入虚拟环境
django-admin startproject single_blog
将文件代码添加到暂存区,./表示目录下的所有文件也可以指定单独文件
git add ./
将暂存区提交到仓储区
git commit -m '搭建django博客框架'
如果提交出现下面错误那是git用户信息没有配置:
(py3) python@python:~/django_web/django_blog$ git commit -m '项目创建'
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'python@python.(none)')
第一个要配置的是你个人的用户名称和电子邮件地址。这两条配置很重要,每次 Git 提交时都会引用这两条信息,说明是谁提交了更新,所以会随更新内容一起被永久纳入历史记录:
$ git config --global user.name "it" #你的名字
$ git config --global user.email it@example.com #码云账号
合并分支,dev分支一般用来合并代码,开发一般在自己的分支,那么就需要将dev的内容合并到it分支
it分支同步dev分支
git chechout it
git merge dev
推送it分支
git push origin it