1 Star 12 Fork 5

算法美食屋/eat_pyspark_in_10_days

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
push_to_github.py 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
算法美食屋 提交于 2020-12-30 22:06 . revise some chapters
# -*- coding: utf-8 -*-
# ## 推送主分支
# !git config --global user.email "[email protected]"
# 出现一些类似 warning: LF will be replaced by CRLF in <file-name>. 可启用如下设置。
# !git config --global core.autocrlf false
# 配置打印历史commit的快捷命令
# !git config --global alias.lg "log --oneline --graph --all"
# !git init
# !git add ./data/* *.md *.py
# +
# #!rm -rf *.html
# -
# !git rm --cached .ipynb_checkpoints/*
# !git commit -m"revise some chapters"
# !git remote add origin https://github.com/lyhue1991/eat_pyspark_in_10_days
# !git pull origin master
# !git push origin master
# !git remote rm gitee
# !git remote add gitee https://gitee.com/Python_Ai_Road/eat_pyspark_in_10_days
# !git push -f gitee master
# ## 创建pages分支
# !git checkout -b gh-pages
# !git rm --cached -r *.md
# !git clean -df
# !rm -rf *.md
# !cp -r _book/* .
# !git add .
# !git reset
# !git pull origin gh-pages
# !git commit -m 'add gh-pages'
# !git push -u origin gh-pages
# !git checkout pages
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Python_Ai_Road/eat_pyspark_in_10_days.git
[email protected]:Python_Ai_Road/eat_pyspark_in_10_days.git
Python_Ai_Road
eat_pyspark_in_10_days
eat_pyspark_in_10_days
master

搜索帮助