Normal-OJ / new-front-end

v2 client for Normal Online Judge
https://noj.tw
Mozilla Public License 2.0
0 stars 7 forks source link

範例 #50

Closed uier closed 1 year ago

uier commented 1 year ago

@Misawai 看一下這個 PR 的變更是否就是我 rebase 後的所有新增的內容

請你重新 clone,未來任何新功能都先從 feat/i18n 切出去一個新的 feat/i18n-<name-of-new-changes>,然後開 PR 讓我 review

git clone git@github.com:Normal-OJ/new-front-end.git
git checkout feat/i18n # <- 當前我們做翻譯功能的主要分支
git checkout -b feat/i18n-<name-of-new-changes> # <- 創建你的新的工作分支並切過去,`<name-of-new-changes>` 是你自己幫這個工作分支取的名字
# 過程中會有一些 commits... 此處略...
git push -u origin feat/i18n-<name-of-new-changes> # <- 好了之後把這個工作分支推到遠端

然後在 https://github.com/Normal-OJ/new-front-end/pulls 頁面開一個新的 PR base 為 feat/i18n,compare 為 feat/i18n-<name-of-new-changes>


這個 PR 只是示範用,這些變更是你完成的,是你的貢獻,所以你再開一個 PR 讓我幫你合

Misawai commented 1 year ago

OK