/song

歌曲接口

Primary LanguagePythonMIT LicenseMIT

song

歌曲接口

更新数据库

python manage.py makemigrations
python manage.py migrate

如何团队项目保持同步(重要)

(附上IDEA可视化操作)

第一次时需要,与团队仓库建立联系

git remote add upstream https://github.com/dgut-group-ten/song.git

工作前后要运行这几条命令,和团队项目保持同步

git fetch upstream
git merge upstream/master

参考资料