摘要:
阅读全文
摘要:
上传之前: 1 add commit 一次 2 再先创建develop分支 3 然后修改点数据,再合并一次 4 再进行首次上传 阅读全文
摘要:
Git global setup( Git全局设置 ) git config --global user.name "朱广发" git config --global user.email "784670492@qq.com" Create a new repository( 创建一个新的存储库 ) 阅读全文
摘要:
官方的一键安装方式: curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 启动Docker的命令: sudo systemctl start docker 通过运行hello-world镜像来验证是否正确安装了Dock 阅读全文
摘要:
一、环境 centos7.6 二、下载安装包 1、下载fastdfs cd /usr/local/srcwget https://github.com/happyfish100/fastdfs/archive/refs/tags/V6.07.tar.gz -O fastdfs-6.07.tar.gz 阅读全文
摘要:
先git pull,看看有无更新。 再git status, 然后在git commit 自己的版本。 执行git pull命令,将远程分支最新的代码拉取到本地分支上。 如果出现冲突(conflicts),使用git status命令查看问题文件,手动解决代码冲突。 使用git add命令添加修改后 阅读全文
摘要:
git restore . 阅读全文
摘要:
1 先把分支git add . git commit -m 保存好 2 git checkout master 回到之分支 3 git pull 更新master最新的数据 4 git merge 分支名称 云端的操作:origin/分支 git merge origin/index-swiper 阅读全文
摘要:
https://blog.csdn.net/weixin_43233914/article/details/126483734 阅读全文
摘要:
1 使用gunicorn,无法加载static: 在urls.py,加上: from django.contrib.staticfiles.urls import staticfiles_urlpatterns末尾加上: urlpatterns += staticfiles_urlpatterns( 阅读全文