forked from jennybc/happy-git-with-r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usage-new-project-github-first.Rmd
184 lines (108 loc) · 7.72 KB
/
usage-new-project-github-first.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
# New project, GitHub first {#new-github-first}
We create a new Project, with the preferred "GitHub first, then RStudio" sequence. Why do we prefer this? Because this method of copying the Project from GitHub to your computer also sets up the local Git repository for immediate pulling and pushing. Under the hood, we are doing `git clone`.
You've actually done this before during set up (chapter \@ref(rstudio-git-github)). We're doing it again, *with feeling*.
The workflow is pretty similar for other repository managers like GitLab or Bitbucket. We will specify below when you may need to do something differently.
## Make a repo on GitHub
**Do this once per new project.**
Go to <https://github.com> and make sure you are logged in.
Click green "New repository" button. Or, if you are on your own profile page, click on "Repositories", then click the green "New" button.
- Repository name: `myrepo` (or whatever you wish)
- Public
- YES Initialize this repository with a README
Click the big green button "Create repository."
Copy the HTTPS clone URL to your clipboard via the green "Clone or Download" button. Or copy the SSH URL if you chose to set up SSH keys.
### GitLab
Log in at <https://gitlab.com>. Click on the "+" button in the top-right corner, and then on "New project".
- Project name: `myrepo` (or whatever you wish)
- Public
- YES Initialize repository with a README
Click the big green button "Create project."
Copy the HTTPS or SSH clone URL to your clipboard via the blue "Clone" button.
### Bitbucket
Log in at <https://bitbucket.org>. On the left-side pane, click on the "+" button, and then on "Repository" under "Create".
- Repository name: `myrepo` (or whatever you wish)
- Access level: Uncheck to make the repository public.
- Include a README?: Select either "Yes, with a tutorial (for beginners)" or "Yes, with a template"
- Version control system: Git
Click the big blue button "Create repository."
Copy the HTTPS or SSH clone URL that appears when you click on the blue "Clone" button. Make sure you remove the `git clone ...` that shows up at the beginning.
## New RStudio Project via git clone {#new-rstudio-project-via-git}
In RStudio, start a new Project:
* *File > New Project > Version Control > Git*. In the "repository URL" paste the URL of your new GitHub repository. It will be something like this `https://github.com/jennybc/myrepo.git`.
* Be intentional about where you create this Project.
* Suggest you "Open in new session".
* Click "Create Project" to create a new directory, which will be all of these things:
- a directory or "folder" on your computer
- a Git repository, linked to a remote GitHub repository
- an RStudio Project
* **In the absence of other constraints, I suggest that all of your R projects have exactly this set-up.**
This should download the `README.md` file that we created on GitHub in the previous step. Look in RStudio's file browser pane for the `README.md` file.
There's a big advantage to the "GitHub first, then RStudio" workflow: the remote GitHub repo is added as a remote for your local repo and your local `master` branch is now tracking `master` on GitHub. This is a technical but important point about Git. The practical implication is that you are now set up to push and pull. No need to fanny around setting up Git remotes and tracking branches on the command line.
### Optional: peek under the hood
Completely optional activity: use command line Git to see what we're talking about above, i.e. the remote and tracking branch setup.
`git remote -v`or `git remote --verbose` shows the remotes you have setup. Here's how that looks for someone using SSH with GitHub and calling it `origin` (a convention I hate but am resigned to):
``` sh
$ git remote -v
origin [email protected]:jennybc/myrepo.git (fetch)
origin [email protected]:jennybc/myrepo.git (push)
```
`git branch -vv` prints info about the current branch. In particular, we can see that local `master` is tracking the `master` branch on `origin`, a.k.a. `origin/master`.
``` sh
$ git branch -vv
* master 7c98308 [origin/master] Initial commit
```
`git clone`, which RStudio did for us, sets all of this up automatically. This is why "GitHub first, then RStudio" is the preferred way to start projects early in your Git/GitHub life.
## Make local changes, save, commit
**Do this every time you finish a valuable chunk of work, probably many times a day.**
From RStudio, modify the `README.md` file, e.g., by adding the line "This is a line from RStudio". Save your changes.
Commit these changes to your local repo. How?
* Click the "Git" tab in upper right pane
* Check "Staged" box for any files whose existence or modifications you want to commit.
- To see more detail on what's changed in file since the last commit, click on "Diff" for a Git pop-up
* If you're not already in the Git pop-up, click "Commit"
* Type a message in "Commit message", such as "Commit from RStudio".
* Click "Commit"
## Push your local changes to GitHub
**Do this a few times a day, but possibly less often than you commit.**
You have new work in your local Git repository, but the changes are not online yet.
This will seem counterintuitive, but first let's stop and pull from GitHub.
Why? Establish this habit for the future! If you make changes to the repo in the browser or from another machine or (one day) a collaborator has pushed, you will be happier if you pull those changes in before you attempt to push.
Click the blue "Pull" button in the "Git" tab in RStudio. I doubt anything will happen, i.e. you'll get the message "Already up-to-date." This is just to establish a habit.
Click the green "Push" button to send your local changes to GitHub. You should see some message along these lines.
``` bash
[master dc671f0] blah
3 files changed, 22 insertions(+)
create mode 100644 .gitignore
create mode 100644 myrepo.Rproj
```
## Confirm the local change propagated to the GitHub remote
Go back to the browser. I assume we're still viewing your new GitHub repo.
Refresh.
You should see the new "This is a line from RStudio" in the README.
If you click on "commits," you should see one with the message "Commit from RStudio".
## Make a change on GitHub
Click on README.md in the file listing on GitHub.
In the upper right corner, click on the pencil for "Edit this file".
Add a line to this file, such as "Line added from GitHub."
Edit the commit message in "Commit changes" or accept the default.
Click the big green button "Commit changes."
### GitLab
Click on README.md in the file listing on GitLab.
In the upper right corner, click on "Edit".
Add a line to this file, such as "Line added from GitLab."
Edit the commit message in "Commit changes" or accept the default.
Click the big green button "Commit changes."
### Bitbucket
Click on README.md in the file listing on Bitbucket.
In the upper right corner, click on "Edit".
Add a line to this file, such as "Line added from Bitbucket."
Click on the blue "Commit" button. A pop-up will show up. Edit the commit message or accept the default.
Click the blue "Commit" button.
## Pull from GitHub
Back in RStudio locally ...
Inspect your README.md. It should NOT have the line "Line added from GitHub". It should be as you left it. Verify that.
Click the blue Pull button.
Look at README.md again. You should now see the new line there.
## The end
Now just ... repeat. Do work somewhere. Commit it. Push it or pull it\* depending on where you did it, but get local and remote "synced up". Repeat.
\* Note that in general (and especially in future when collaborating with other developers) you will usually need to pull changes from the remote (GitHub) before pushing the local changes you have made. For this reason, it's a good idea to try and get into the habit of pulling before you attempt to push.