# 2022fall-compiler_cminus **Repository Path**: wangqiang95/2022fall-compiler_cminus ## Basic Information - **Project Name**: 2022fall-compiler_cminus - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-28 - **Last Updated**: 2024-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 实验说明 请 fork 此 repo 到自己的仓库下,随后在自己的仓库中完成实验,请确保自己的 repo 为 Private。 ## 目前已布置的实验 * [lab1](./Documentations/1-parser/) + DDL:2022-10-03 23:59:59 (UTC+8) * [lab2](./Documentations/2-ir-gen-warmup/) + DDL:2022-10-23 23:59:59 (UTC+8) * [lab3](./Documentations/3-ir-gen/) + DDL:2022-11-13 23:59:59 (UTC+8) * [lab4.1](./Documentations/4.1-ssa/) + DDL:2022-11-27 23:59:59 (UTC+8) * [lab4.2](./Documentations/4.2-gvn/) + DDL: 2023-01-14 23:59:59 (UTC+8) ## FAQ: How to merge upstream remote branches In brief, you need another alias for upstream repository (we assume you are now in your local copy of forked repository on Gitlab): ```shell $ git remote add upstream git@202.38.79.174:compiler_staff/2022fall-compiler_cminus.git ``` Then try to merge remote commits to your local repository: ```shell $ git pull upstream master ``` Then synchronize changes to your forked remote repository: ```shell $ git push origin master ```