# doc2025 **Repository Path**: yasepix/doc2025 ## Basic Information - **Project Name**: doc2025 - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-05 - **Last Updated**: 2025-10-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 好记心不如烂笔头 #### 介绍 一些笔记 color=#0099ff size=72 face="黑体" 这是有颜色的字 #### 软件架构 软件架构说明 $\ frac{1-x}{y+1}$ 或 $x \over x+y$ ![1669889346432](README.assets/1669889346432.png) #### 安装教程 1. 用户名yasepix@163.com 2. $\left[\left.\mu^2+\beta(\mu n-\nu m)^2\right]u^2-2\beta(\mu n-\nu m\right)mbu+\beta m^2t^2-\alpha m^2$ 3. xxxx 4. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库ok 2. 新建 Feat_xxx 分支 3. 提交代码,我会认真审核的 4. 新建 Pull Request #### 码云特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) D:\yasepix λ git clone https://gitee.com/yasepix/mydoc.git λ git config --global user.email "yasepix@163.com" λ git config --global user.name "yasepix" ```shell git add . git commit -m "create program" git push origin master ``` # Git中从远程的分支获取最新的版本到本地 2011年11月16日 10:47:17 小元宝 阅读数 92136 Git中从远程的分支获取最新的版本到本地有这样2个命令: ## 1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge git fetch origin master git log -p master..origin/master git merge origin/master 以上命令的含义: 首先从远程的origin的master主分支下载最新的版本到origin/master分支上 然后比较本地的master分支和origin/master分支的差别 最后进行合并 上述过程其实可以用以下更清晰的方式来进行: git fetch origin master:tmp git diff tmp git merge tmp 从远程获取最新的版本到本地的test分支上 之后再进行比较合并 ## 2. git pull:相当于是从远程获取最新版本并merge到本地 git pull origin master 上述命令其实相当于git fetch 和 git merge 在实际使用中,git fetch更安全一些 因为在merge前,我们可以查看更新情况,然后再决定是否合并