Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stewid/test-04

Test to add an existing project to GitHub using https and git2r on OSX
https://github.com/stewid/test-04

Last synced: 27 days ago
JSON representation

Test to add an existing project to GitHub using https and git2r on OSX

Awesome Lists containing this project

README

        

# Add an existing project to GitHub using https and git2r

Create a new repository on GitHub before running the following R code.

```r
library(git2r)

# 1) Create a new repository
repo <- init("test-04")

# 2) Add 'README.md' to local repository
add(repo, "README.md")

# 3) Commit staged 'README.md'. Add sessionInfo to commit message
commit(repo, message = "Initial commit", session = TRUE)

# 4) Add URL for the remote repository
remote_add(repo, "origin", "https://github.com/stewid/test-04.git")

## 5) Create credentials from environmental variables
cred <- cred_env("GITHUB_USER", "GITHUB_PAT")

# 6) Push changes in local repository to GitHub
push(repo, "origin", "refs/heads/master", credentials = cred)
```