Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 761 Bytes

GIT-FORK.md

File metadata and controls

41 lines (30 loc) · 761 Bytes

about fork

查看是否添加了更新源

```
git remote -v
```

添加更新源

git remote add upstream https://github.com/MartialBE/one-hub.git

添加成功后,查看是否添加成功

从源同步更新

git fetch upstream

合并源的分支

git merge upstream/main

推送到自己的仓库

git push