# web留言板 **Repository Path**: Wjj20020718/web-message-board ## Basic Information - **Project Name**: web留言板 - **Description**: html+flask+mysql - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-07 - **Last Updated**: 2023-07-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: Flask, HTML, MySQL ## README # web留言板 #### 介绍 html+flask+mysql #### 软件架构 软件架构说明,分为三部分。第一部分为本地数据库的创建,第二部分为接口的建立以及第三部分前段的设计! #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. 配置仓库,要先下载git,打开输入以下命令进行配置 git config --global user.name "your name" git config --global user.email "your email" 2. git clone 项目的url 你想放的位置(要先创建一个空文件!) 3. 远程仓库同步到本地仓库: git pull 4. 提交本地仓库到远程仓库进行更新 git add 文件名 git commit -m "你想要写的标注" git push 注意:里面所需要的用户名在gitee主页可以看到!密码忘了可以重设 ## window使用说明 Qu1: Issue rebase is not possible due to unexpected issue. git rebase -i 69cd~ fatal: It seems that there is already a rebase-merge directory, and I wonder if you are in the middle of another rebase. If that is the case, please try git rebase (--continue | --abort | --skip) If that is not the case, please rm -fr ".git/rebase-merge" and run me again. I am stopping in case you still have something valuable there. Solution git rebase --abort Qu2: git status 出错 interactive rebase in progress; onto 796e78f 使用 git commit --amend 命令修订当前的提交 使用 git rebase --continue 命令继续代码的提交(推荐),执行之后,需要重新提交,解决一下当前的代码冲突之后重新提交直至没有rebase提示,就可以正常提交了 前提 1.已经下载过Git Bash (如果还没有下载过,请移步至其他博主的博客下载安装Git Bash后再回来继续) 2.有一个Git账号(耍个机灵hhh) 步骤 下面以上传项目course-system-fe为例 1.在Gitee上创建该项目的远程仓库 2.进入本地你想要上传的文件目录下,右键单击空白处,点击Git Bash Here 3.配置你的用户名和邮箱 git config --global user.name "xxx" git config --global user.email "xxx" (P.S.如果不放心可以输入以下命令检查自己的用户名和邮箱) git config user.name git config user.email 4.在项目内空白处右键Git Bash Here,命令行输入下列命令,初始化本地仓库 git init 5.添加项目目录下所有文件至本地仓库 git add . (注意这里有个点) 6.使用如下命令加入注释提交(此步骤必不可少!) git commit -m '本次提交的说明'(说明信息为必填项,最好是信息有意义,便于后期理解) 7.将本地仓库与远程仓库相连接 首先在远程仓库复制http链接 然后输入下列命令(xxx为刚才复制的链接) git remote add origin xxx 8.强制将远程仓库文件更新至指定远程仓库中(如果仓库为空可以跳过这一步骤) git pull --rebase origin master 9.将本地仓库中的文件推送至指定的远程仓库中 git push -u origin master 10.最后回到Gitee网页,刷新一下即可! #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ## window使用说明