首先你要在github上申请一个账号
网址:https://github.com/
下载git工具(Windows在官网下载https://gitforwindows.org/,虚拟机在终端yum install git)
进入github首页,点击新项目new repository,命名
将自己写的Django项目保存到GitHub里面
在虚拟机里面做的操作
git config --global user.name 'lue'
git config --global user.name '2773251565@qq.com'
进入到需要版本控制的目录中
git init 初始化git目录
git add * 跟踪所有改动过的文件
git commit -m 'Django第一次提交:后台管理和数据管理'
git log 查看提交历史
git remote add origin https://github.com/lue19980925/lue.git 将本地仓库和远程仓库关联起来
git push -u origin master origin是本地仓库的主分支名称,master是远程仓库的分支名称