... | @@ -2441,7 +2441,7 @@ MANIFEST |
... | @@ -2441,7 +2441,7 @@ MANIFEST |
|
1. Pick one of the two example `.gitignore` files.
|
|
1. Pick one of the two example `.gitignore` files.
|
|
2. Copy the contents into a new `.gitignore` file in your repo.
|
|
2. Copy the contents into a new `.gitignore` file in your repo.
|
|
3. Run `git add .gitignore`
|
|
3. Run `git add .gitignore`
|
|
4. Run `git commit -m "Add .gitignore file"
|
|
4. Run `git commit -m "Add .gitignore file"`
|
|
|
|
|
|
|
|
|
|
#### README.md
|
|
#### README.md
|
... | @@ -2462,7 +2462,7 @@ students](https://www.cs.odu.edu/~tkennedy/cs417/s20/Public/exampleReadme/index. |
... | @@ -2462,7 +2462,7 @@ students](https://www.cs.odu.edu/~tkennedy/cs417/s20/Public/exampleReadme/index. |
|
|
|
|
|
|
|
|
|
1. Create a new file `README.md` in your repo.
|
|
1. Create a new file `README.md` in your repo.
|
|
2. Copy-and-Paste the folling content into the file.
|
|
2. Copy-and-Paste the following content into the file.
|
|
|
|
|
|
|
|
|
|
````markdown
|
|
````markdown
|
... | @@ -2490,7 +2490,31 @@ students](https://www.cs.odu.edu/~tkennedy/cs417/s20/Public/exampleReadme/index. |
... | @@ -2490,7 +2490,31 @@ students](https://www.cs.odu.edu/~tkennedy/cs417/s20/Public/exampleReadme/index. |
|
```
|
|
```
|
|
````
|
|
````
|
|
|
|
|
|
|
|
3. Run `git add README.md`
|
|
|
|
4. Run `git commit -m "Add initial README file"`
|
|
|
|
|
|
|
|
*Note:* We should probably expand this file to include sample output for a provided
|
|
|
|
input.
|
|
|
|
|
|
|
|
Perform a quick check of your repo with `git log`. You should see something
|
|
|
|
simliar to
|
|
|
|
|
|
|
|
```
|
|
|
|
commit e08c3d8d79a9f2650e7b5a7a9984e582e2814dbe
|
|
|
|
Author: Thomas J. Kennedy <tkennedy@cs.odu.edu>
|
|
|
|
Date: Mon Mar 2 15:18:42 2020 -0500
|
|
|
|
|
|
|
|
Add initial README file
|
|
|
|
|
|
|
|
commit d8aa52c01fa2f9d7586a44bcd28dbe171a2e14ac
|
|
|
|
Author: Thomas J. Kennedy <tkennedy@cs.odu.edu>
|
|
|
|
Date: Mon Mar 2 15:17:38 2020 -0500
|
|
|
|
|
|
|
|
Add .gitignore file
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
#### Adding Some Python Code
|
|
|
|
|
|
|
|
|
|
|
|
|
... | | ... | |