Skip to content

Commit 70e92aa

Browse files
Merge pull request #36 from LearnYouSomeComputer/ch3
Git: Os's edits
2 parents 76a2f65 + 175ceb2 commit 70e92aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

03-Git-Basics.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ We say it's local because it's stored locally --- in a place where you can acces
6868

6969
When you work with a local Git repository, you will:
7070

71-
- **ask Git to track** of changes to files.
71+
- **ask Git to track** changes to files.
7272
Git *does not* automatically track files.
7373
You have to tell it to track stuff.
7474
- **ask Git to take snapshots** of the files in your repository.
@@ -99,7 +99,7 @@ An empty repository will contain no files and an empty timeline (with no snapsho
9999
Try the following to create your own, empty repository on GitLab:
100100

101101
1. Log in to [https://git-classes.mst.edu/](https://git-classes.mst.edu/) using your Single Sign-On credentials.
102-
2. Click the `+` (New Project) button in the upper right to create a new repository on GitLab.
102+
2. Click the `+` (New Project) button in the middle of the top bar to create a new repository on GitLab.
103103
3. Under Project Name, give your project a good name. Let's call it `my-fancy-project`.
104104
- You can enter a description if you like, or you can leave it blank.
105105
- Make sure your repository's visibility is set to Private.
@@ -110,7 +110,7 @@ Now that you've created your repository, it's ready for you to start working.
110110
Let's try cloning the remote repository into a local repository.
111111

112112
1. Look for the "Create a new repository" section and copy the command that starts with `git clone https://...my-fancy-project.git`
113-
2. Connect to a campus Linux machine using PuTTY and paste that command in your bash shell.
113+
2. Connect to a campus Linux machine and paste that command in your bash shell.
114114
3. Press enter, and type in your username and password when prompted.
115115
4. Run `ls`. You should see that a folder called `my-fancy-project` was created in your current working directory.
116116
5. Use `cd` to enter your freshly cloned repository.
@@ -844,6 +844,7 @@ Name: `______________________________`
844844
- [The Git Book](https://git-scm.com/book/en/v2)
845845
- [Git Branching Tutorial](http://learngitbranching.js.org/)
846846
- [GitHub's Git Tutorial](https://try.github.io/levels/1/challenges/1)
847+
- [Advice on writing good commit messages](https://chris.beams.io/posts/git-commit/)
847848

848849
[^open]: Now open them again, because it's hard to read with your eyes shut.
849850
[^next-big-thing]: This is your daydream, friend. I have no idea what this program is or does.

0 commit comments

Comments
 (0)