-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
249 lines (201 loc) · 7.66 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
---
output:
md_document:
variant: markdown_github
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
RとGitおよびGitHubを結びつけるパッケージ
=====
## Rパッケージ
* [**`{git2r}`**](https://github.com/ropensci/git2r)... Rを通じて主要なGit操作を可能にするパッケージ。内部ではC言語で実装された[libgit2](https://libgit2.github.com)を利用している。
* [**`{github}`**](https://github.com/cscheid/rgithub)... GitHub APIラッパーパッケージその1
* [**`{gistr}`**](https://github.com/ropensci/gistr)... gist管理
* [**`{gh}`**](https://github.com/gaborcsardi/gh)... GitHub APIラッパーパッケージその2。Hadleyが **`{devtools}`**と相互性を持たせようとしていて、未来が明るい感じがある (https://github.com/gaborcsardi/gh/issues/30)
## 作業の流れ
### gitリポジトリを作成
1. **`{git2r}`**あるいはRStudioの新規プロジェクト作成機能で**ローカル**に作成
2. GitHubからクローン
```{r}
library(git2r)
(getwd())
cred <- cred_user_pass("EMAIL", Sys.getenv("GITHUB_PAT"))
```
```{r, eval = FALSE, echo = TRUE}
# 既存のディレクトリ内にリポジトリを新規作成
init(path = getwd(), bare = FALSE)
r <- git2r::repository(getwd())
```
```{r, eval = FALSE}
library(github)
# リモートリポジトリをGitHub上に作成
res <- github::create.repository(name = "test_git2r",
description = "test R and Git, GitHub integration",
private = FALSE)
# $ok
# [1] TRUE
#
# $content
# $content$id
# [1] 49580376
#
# $content$name
# [1] "test_git2r"
#
# $content$full_name
# [1] "uribo/test_git2r"
```
```{r, eval = FALSE}
# リモートリポジトリに指定
remotes(r)
# character(0)
remote_add(repo = r, name = "origin", url = res$content$clone_url)
remotes(r)
# [1] "origin"
```
一旦RStudioを再起動してgitパネルを有効化する。
### コミットからプッシュまで
```{r, eval = FALSE}
# .gitignore ファイルの編集
devtools::source_gist(id = "b9cf68217c596369721a")
add_ignore()
status(r)
# Untracked files:
# Untracked: .gitignore
# Untracked: README.Rmd
# Untracked: README.md
# Untracked: test_git2r.Rproj
add(r, list.files(all.files = TRUE, recursive = TRUE))
status(r)
# Staged changes:
# New: .gitignore
# New: README.Rmd
# New: README.md
# New: test_git2r.Rproj
git2r::commit(r, message = "Initial commit :hatching_chick:")
# [e1a31ce] 2016-01-14: Initial commit :hatching_chick:
# リモートリポジトリにpush
push(r, "origin", "refs/heads/master", credentials = cred)
status(r)
```
以降は、ファイルに変更や管理対象のファイルに操作を加えた場合にコミットをしていく。例えば、README.Rmdを編集した場合、ステータスが変化するのでコミットする。
```{r, eval = FALSE}
status(r)
# Unstaged changes:
# Modified: README.Rmd
# Modified: README.md
add(r, path = list.files(pattern = "^README"))
status(r)
# Staged changes:
# Modified: README.Rmd
# Modified: README.md
git2r::commit(r, message = "Upgrade commit example")
push(r, "origin", "refs/heads/master", credentials = cred)
```
### ブランチの作成
```{r, eval = FALSE}
# 現在のブランチ一覧
# $master
# [ac0ece] (Local) (HEAD) master
#
# $`origin/master`
# [ac0ece] (origin @ https://github.com/uribo/test_git2r.git) master
# test/create_branchというブランチへcheckout。create引数をTRUEにして作成も同時に行う
git2r::checkout(r, branch = "test/create_branch", create = TRUE)
# HEADが先ほど作成したブランチにきていることを確認
git2r::branches(r, flags = "local")
# $master
# [ac0ece] (Local) master
#
# $`test/create_branch`
# [ac0ece] (Local) (HEAD) test/create_branch
# ファイルをコミットする
git2r::add(r, list.files(pattern = "^README"))
git2r::commit(r, message = "Upgrade README\nCreate branch")
git2r::push(r, "origin", "refs/heads/test/create_branch", credentials = cred)
```
### プルリクエストの発行
```{r, eval = FALSE}
# ref) https://developer.github.com/v3/pulls/#create-a-pull-request
gh::gh("POST /repos/uribo/test_git2r/pulls",
title = "ブランチの作成について追加",
head = "uribo:test/create_branch",
base = "master",
body = "このプルリクエストは{gh}パッケージを使ってAPI経由で発行したもの")
```
### ブランチのマージ
```{r, eval = FALSE}
# ref) https://developer.github.com/v3/pulls/#merge-a-pull-request-merge-button
gh::gh("PUT /repos/:owner/:repo/pulls/:number/merge",
owner = "uribo",
repo = "test_git2r",
number = 2,
commit_message = "{gh}パッケージからmerge! :muscle:")
```
### ブランチの削除
> git branch -d <branchname>
```{r, eval = FALSE}
git2r::branches(r, flags = "local")
# $master
# [dbd077] (Local) (HEAD) master
#
# $`test/create_branch`
# [f4607c] (Local) test/create_branch
# うまくいかない?
git2r::branch_delete("test/create_branch")
```
### リモートリポジトリの変更を反映させる
プルリクエストにより、リモートリポジトリに変更が加えられた場合、ローカルリポジトリとの間に差が生じる。そのため更新情報をリモートリポジトリに反映させる必要がある。
> git pull origin master
```{r, eval = FALSE}
# うまくいかない?
# masterブランチに切り替え。変更が加えられていて、未コミットのファイルがあるとcheckoutできないので注意
git2r::checkout(r, "master")
git2r::fetch(r, name = "origin", credentials = cred)
# [new] 7a071fde0521bed4d6e7 refs/remotes/origin/master
pull(r, credentials = cred)
```
## GitHub issuesの活用
ref) https://github.com/Cucurbitaceae/cucumber-flesh/issues/1
**`{github}`**あるいは**`{gh}`**パッケージとGitHub APIを使って行う。**`{github}`**ではAPIの種類に応じて関数が用意されており、 **`{gh}`**では`gh()`関数内の*endpoint*引数でAPIを指定する。
```{r, eval = FALSE}
library(github)
create.issue(owner = "uribo", repo = "cucumber_flesh",
content = list(title = "Create issue from {github} package",
body = ":package: {github}パッケージを使ってGithub issuesの作成\n改行はどうなるか :smile_cat:"))
```
```{r, eval = FALSE}
library(gh)
# Sys.setenv("GITHUB_TOKEN") でtokenを与えていない場合、.token引数で指定する。
gh("POST /repos/Cucurbitaceae/cucumber-flesh/issues",
title = "Create issue to employ {gh} package",
body = ":package: {github}パッケージからもissuesを作成可能。\n参考#1",
labels = array("sandbox"),
.token = "<Personal Access Token>")
gh("PATCH /repos/:owner/:repo/issues/:number",
owner = "Cucurbitaceae",
repo = "cucumber-flesh",
number = "3",
state = "closed")
gh(endpoint = "GET /users/:username/repos", username = "uribo")
```
```{r, eval=FALSE}
headers <- httr::add_headers(Accept = "application/vnd.github.v3+json",
Authorization = paste("token", Sys.getenv("GITHUB_TOKEN")))
GET("https://api.github.com/users/uribo",
config = headers)
# POST("https://api.github.com/repos/Cucurbitaceae/cucumber-flesh/issues",
# body = list(title = "Create issue from R using {httr}",
# body = ":package: {httr}パッケージだけでissueをPOSTするテスト"),
# config = headers,
# encode = "json")
```
```{r, eval=FALSE, echo=FALSE}
rmarkdown::render("README.Rmd", output_format = "md_document")
```