git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| // ==UserScript== | |
| // @name 本草綱目中英快速切換 | |
| // @namespace https://blog.darkthread.net | |
| // @version 0.1 | |
| // @description MS Learn 文件中英文切換 | |
| // @author You | |
| // @match https://learn.microsoft.com/*/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=microsoft.com | |
| // @grant none | |
| // ==/UserScript== |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| width: 720px; | |
| height: 480px; | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| } |
| using System.Linq; | |
| using ServiceStack; | |
| using ServiceStack.Text; | |
| using System.Collections.Generic; | |
| using ServiceStack.Text.Common; | |
| public class POCO { | |
| public string Prop1 { get; set; } | |
| public string Prop2 { get; set; } | |
| public string Prop3 { get; set; } |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream