# java-web dev **Repository Path**: politenhammerc/java-web-dev ## Basic Information - **Project Name**: java-web dev - **Description**: tech stack: rust/python network java - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-28 - **Last Updated**: 2024-05-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 流程 完成你的工作后,通常先后使用舒筋健腰丸 ## **git add .**
git add -n

显示预期,并不会对仓库的状态产生影响,建议,只是建议请提交前试试这个

git add -v
git add -i
这用来将你的修改从本地添加到你自己的分支中
## **git commit -m "message"**
提交,push后message会显示在你的本次更改
## **git push**
git push -v
git push -q
git push --all

会合并到当前分支,谨慎地在公共的主分支上使用


最后可以
git add . | git commit -m "tjh" | git push # 冲突
## git stash
git stash pop

弹出并销毁你的暂存内容

# gitee的使用

·点击克隆/下载后选择第一个复制


·然后打开你的开发环境(IDE),比如VScode,在terminal输入:好像第二个更方便

git clone https://gitee.com/iceselen/cduestc-javaweb.git # 放在最后

减少提交量
多使用add
如果对自己的本地或add状态比较在意,多使用git add -n

## 代码结构

项目开始的时候我会给注释

```markdown /my-project |-- /src | |-- /main | | |-- /java | | | |-- /com | | | | |-- /example | | | | | |-- /controller | | | | | |-- /model | | | | | |-- /service | | | | | |-- /dao | | | | | |-- /conf | | | | | |-- AppConfig.ja | | | | | |-- AppInitializer.java | | | | | |-- MainApp.java | | | |-- /other/java/packages | | |-- /resources | | | |-- /static | | | | |-- css | | | | |-- js | | | | |-- img | | | |-- /templates | | | | |-units | | | | |-- .html | | | | |-- .html | | | |-- application.properties | | | |-- log4j.properties | | | |-- mybatis-config.xml | | |-- /webapp | | | |-- WEB-INF | | | | |-- web.xml | | | |-- index.jsp | |-- /test | | |-- /java | | |-- /resources |-- /target |-- .gitignore |-- pom.xml