- git操作方法
1. 创建仓库git init - 初始化仓库。 git clone - 拷贝一份远程仓库,也就是下载一个项目。 2. 配置git config 3. 提交与修改git add - 添加文件到暂存区。 git status - 查看仓库当前的状态,显示有变更的文件。 git diff - 比较文件的不同,即暂存区和工作区的差异。 git commit - 提交暂存区到本地仓库。 git reset - 回退版本。 git rm - 删除工作区文件。 git mv - 移动或重命名工作区文件。 4. 提交日志git log - 查看历史提交记录。 git blame <file> - 以列表形式查看指定文件的历史修改记录。 5. 远程操作git remote - 远程仓库操作。 git fetch - 从远程获取最新版本到本地,不会自动merge。 git pull - 从远程获取最新版本到本地,并自动merge。相当于:git fetch + git merge。 git push - 将本地库中的最新信息发送给远程库 git merge - 用于从指定的commit(s)合并到当前分支,用来合并两个分支 6. 快速命令[图片] 图片源自菜鸟教程 7. 工作过程[图片] 图片源自菜鸟教程 8. 本地操作[图片]
2020-11-02 - 小程序怎么向公众号发送消息?
我的需求是老师发布在小程序中作业,学生可以在公众号中收到消息,要怎么实现呢 类似于雨课堂,如下图 [图片]
2020-04-04 - swiper-item加载问题?
swiper通过请求的数据for循环出swiper-item,页面已经存在两个swiper-item并且swiper停留在第二个swiper-item时,刷新数据,渲染的swiper-item数据只有一个时,swiper-item渲染不出来,会形成一个空的节点在页面上,重新刷新数据,当数据为两个或两个以上时可以重新渲染出swiper-item,为一个时失踪渲染不出来
2019-12-11 - 小程序更改checkbox和radio默认样式
1、checkbox checkbox .wx-checkbox-input{ border-radius:50%; width:20px;height:20px; } checkbox .wx-checkbox-input.wx-checkbox-input-checked{ border-color:#F0302F !important; background:#F0302F !important; } checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{ border-radius:50%; width:20px; height:20px; line-height:20px; text-align:center; font-size:15px; color:#fff; background:transparent; transform:translate(-50%, -50%) scale(1); -webkit-transform:translate(-50%, -50%) scale(1); } 2、radio radio .wx-radio-input{ border-radius:50%; width:20px;height:20px; } radio .wx-radio-input.wx-radio-input-checked{ border-color:#F0302F !important; background:#F0302F !important; } radio .wx-radio-input.wx-radio-input-checked::before{ border-radius:50%; width:20px; height:20px; line-height:20px; text-align:center; font-size:15px; color:#fff; background:transparent; transform:translate(-50%, -50%) scale(1); -webkit-transform:translate(-50%, -50%) scale(1); } 如果上面的代码对您有帮助,麻烦抖一抖小手点下赞,谢谢
2018-06-29