https://github.com/apache/spark/blob/branch-2.4/core/src/main/scala/org/apache/spark/SparkContext.scala https://github.com/apache/spark/blob/branch-2. ...
分类:
其他好文 时间:
2019-08-31 19:32:55
阅读次数:
99
git clone <url> [< 目录名 >] -- 从远程拷到本地 来的命令 git branch -a -- 查看远程分支和 本地分支情况 git branch -- 查看本地分支 git branch 分支名 origin/ 远程分支名 -- 新建本地分支,与远程分支 名一一对应 git ...
分类:
其他好文 时间:
2019-08-31 18:56:59
阅读次数:
75
git rebase 的使用 https://my.oschina.net/u/920274/blog/3024879 Git: How to copy a range of commits from one branch to another? http://weblog.avp-ptr.de/2 ...
分类:
其他好文 时间:
2019-08-30 11:25:41
阅读次数:
80
git branch 和 git checkout经常在一起使用,所以在此将它们合在一起 1.Git branch 一般用于分支的操作,比如创建分支,查看分支等等, 1.1 git branch 不带参数:列出本地已经存在的分支,并且在当前分支的前面用"*"标记 1.2 git branch -r ...
分类:
其他好文 时间:
2019-08-27 23:23:57
阅读次数:
82
```
jie@mozq MINGW64 /d/0xcEdu/xcEduService01 ((20ce6a5...))
$ git branch -v
* (HEAD detached at 20ce6a5) 20ce6a5 eureka高可用 bug1 -DPORT=50102 -DEUREKA... ...
分类:
其他好文 时间:
2019-08-27 19:27:40
阅读次数:
80
1.git worktree add -b xxxx_branch ./xxxx_branchorigin/xxxx_branch --no-checkout 2.要在./git/worktrees/xxxx_branch/info下创建sparse-checkout文件 3.cd xxxx_bra ...
分类:
其他好文 时间:
2019-08-22 10:47:33
阅读次数:
101
source: https://www.pexels.com/photo/office-working-app-computer-97077/ 注:这篇适用于用MAC 开发的developer 身为程式开发者,很大一部分的时间是在用command line 做事,如果能把command line 调 ...
分类:
其他好文 时间:
2019-08-21 15:10:13
阅读次数:
144
【Gitlab】GIT回滚master分支到指定tag版本 并提交远程仓库1 查看分支git branch 2 切换到master分支git checkout master 3 查看标签git tagv1.3.3v1.3.4v1.3.5 4 查看某个标签的详情git show v1.3.5commi ...
分类:
其他好文 时间:
2019-08-20 12:44:26
阅读次数:
88
git 从分支上创建一个分支 分支相关 git删除指定分支 gitlab创建新项目 远程仓库中项目拉取 拉取代码git clone git地址-- 默认拉取得是master分支 若需要切换分支使用git branch -a会出现分支列表直接切换到对应的分支git checkout origin/ex ...
分类:
其他好文 时间:
2019-08-19 12:37:21
阅读次数:
104
1.可以在VS中新建分支 2.可以通过git branch -r 命令查看远端库的分支情况 这些红色都是远程的分支 3.从已有的分支创建新的分支(如从master分支),创建一个dev分支 (不用vs建分支 可以这样建) 4.建立本地到远端仓库的链接 --这样代码才能提交上去 使用命令行 5.远程仓 ...
分类:
其他好文 时间:
2019-08-15 13:18:15
阅读次数:
131