Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/stewid/test-04
- Owner: stewid
- Created: 2015-08-16T12:02:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-16T12:08:15.000Z (about 9 years ago)
- Last Synced: 2024-06-12T18:16:45.474Z (5 months ago)
- Size: 97.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```