修改常用信息,添加git操作

jingwei
youHong.ai 2023-04-24 14:09:53 +08:00
parent c69aeb13bf
commit 55de1615a9
1 changed files with 60 additions and 0 deletions

View File

@ -7,6 +7,66 @@
+ 缓存地址: `/commcache/cacheMonitor.jsp` + 缓存地址: `/commcache/cacheMonitor.jsp`
+ 移动端流程模拟地址: `/spa/workflow/static4mobile/index.html#/center/doing` + 移动端流程模拟地址: `/spa/workflow/static4mobile/index.html#/center/doing`
### 操作
#### 设置邮箱和用户名
```shell
# 设置用户名
git config --global user.name "username"
# 设置邮箱
git config --global user.email "useremail@email.email"
```
一个简单的操作步骤:
```shell
$ git init
$ git add .
$ git commit
```
git init - 初始化仓库。
git add . - 添加文件到暂存区。
git commit - 将暂存区内容添加到仓库中。
#### 创建分支
```shell
git checkout -b 分支名称
```
它是下面两条命令的简写:
```shell
# 创建分支
git branch 分支名称
# 切换分支
git checkout 分支名称
```
#### git提交暂存区
```shell
git commit -m "提交描述"
```
#### git提交代码到远程
```shell
git push 远程服务名称 分支名称
# 示例
# git push origin dev
```
#### git拉去服务端代码
```shell
git pull 远程服务名称 分支名称
# 示例
# git pull origin dev
```
## 常用代码 ## 常用代码
### 前端 ### 前端