# UE57 **Repository Path**: jeyarLin/ue57 ## Basic Information - **Project Name**: UE57 - **Description**: No description available - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-05 - **Last Updated**: 2026-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 常用命令 - [all-about-git](https://gitee.com/all-about-git) ```cmd $ git add . $ git commit -m "UE5.7" $ git push # 显示有变更的文件 $ git status # 显示所有远程仓库 $ git remote -v # 列出所有本地分支和远程分支 $ git branch -a $ git pull origin $ git pull origin main # 这里的 origin 是默认的远程仓库名称, 是你想要拉取的分支名称(通常是 main 或 master)。 # git pull 命令用于从远程仓库获取最新的更改并合并到当前分支。这个命令实际上是两个命令的组合:git fetch 和 git merge。 # git fetch:从远程仓库下载最新的数据,但不会自动合并或修改工作目录中的内容。 # git merge:将 fetch 下来的更改合并到当前分支。 ```