# dynamicRouter **Repository Path**: clear_breeze_and_blue_snow/dynamic-router ## Basic Information - **Project Name**: dynamicRouter - **Description**: vue 动态路由 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-05-10 - **Last Updated**: 2022-05-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: Vue, VueRouter ## README 查看配置 git init git add . git commit -m "first commit" git remote add origin https://github.com/用户名/仓库名.git git push -u origin master # git config -l #查看系统 config git config --system --list #查看当前用户(global)配置 git config --global --list git status [filename] 查看指定文件状态 git status 查看所有文件状态 git add . 添加所有文件到暂存区 git commit -m "消息内容" 提交暂存区中的内容到本地仓库 -m 提交信息 # 列出所有本地分支 git branch # 列出所有远程分支 git branch -r # 新建一个分支,但依然停留在当前分支 git branch [branch-name] # 新建一个分支,并切换到该分支 git checkout -b [branch] # 合并指定分支到当前分支 git merge [branch] # 删除分支 git branch -d [branch-name] # 删除远程分支 git push origin --delete [branch-name]\$ git branch -dr [remote/branch]