24 lines
577 B
Markdown
24 lines
577 B
Markdown
<!--
|
|
* @Author: be_loving@163.com
|
|
* @Date: 2025-01-01 17:29:08
|
|
* @LastEditors: be_loving@163.com
|
|
* @LastEditTime: 2025-01-01 17:35:32
|
|
* @FilePath: /superset/GIT_FORK.md
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
-->
|
|
# GIT FORK
|
|
|
|
```bash
|
|
git clone https://github.com/futuremeng/superset.git
|
|
|
|
|
|
git remote add upstream https://github.com/apache/superset.git
|
|
|
|
git remote -v
|
|
|
|
git fetch upstream
|
|
|
|
git merge upstream/master
|
|
|
|
git push origin master
|