forked from cis-ds/course-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git03.Rmd
24 lines (17 loc) · 970 Bytes
/
git03.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
---
title: "Personalize Git"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(cache=TRUE)
```
*You only have to do this once per machine.*
In order to track changes and attribute them to the correct user, we need to tell Git your name and email address. Open the [shell](shell.html) on your computer. From there, type the following commands (replace the relevant parts with your own information):
* `git config --global user.name 'Benjamin Soltoff'`
* This can be your full name, your username on GitHub, whatever you want. Each of your commits will be logged with this name, so make sure it is informative *for others*.
* `git config --global user.email '[email protected]'`
* This must be the email address you used to register on GitHub.
You will not see any output from these commands. To ensure the changes were made, run `git config --global --list`.
### Acknowledgments {.toc-ignore}
```{r child='_ack_stat545.Rmd'}
```