博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Github提交Spark代码
阅读量:5240 次
发布时间:2019-06-14

本文共 1126 字,大约阅读时间需要 3 分钟。

记录下提交过程,易忘供查询用。内容源自田总的分享。

1)在github上fork一份最新的master代码

2)用社区代码库创建本地仓库

git clone https://github.com/apache/spark test-spark

3)加入自己的github代码库

cd test-sparkgit remote -v #列出已经存在的分支origin    https://github.com/apache/spark (fetch)origin    https://github.com/apache/spark (push)git remote add roger https://github.com/luogankun/spark #在url创建名字为roger的仓库git remote -vorigin https://luogankun@github.com/luogankun/spark.git (fetch)origin https://luogankun@github.com/luogankun/spark.git (push)roger https://github.com/luogankun/spark (fetch)roger https://github.com/luogankun/spark (push)

4)下载自己的github代码库

git fetch luogankun

报错:error: The requested URL returned error: 403 Forbidden while accessing https://github.com/luogankun/spark/info/refs

添加代理:git config --global http.proxy http://ip:port

5)创建新的分支并且切换到新分支上

git checkout -b spark-8888 origin/master

git branch #显示当前所在的分支,以及目前本地所有分支,前面有*标注的是当前所在分支

git branch -a #显示当前所在的分支,以及目前远程所有分支,前面有*标注的是当前所在分支

6)修改代码

...

7)本地提交

git statusgit add .......git commit –m "github spark test"

8)提交到远程

git push luogankun spark-8888

9)创建issue和PR

 

转载于:https://www.cnblogs.com/luogankun/p/3927336.html

你可能感兴趣的文章
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
SpringBoot-thymeleaf
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>