Skip to content

Commit

Permalink
minor fixes :)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellivingston authored Dec 15, 2017
1 parent 95df602 commit d569852
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ This will download the FEHM Git repo to your current directory.
Run the command

```
git add file1 file2 fileN
git add file1 file2 ... fileN
```

to add any files you have changed. You can also just run git add if you want to add every changed file.
to add any files you have changed. You can also just run `git add .` if you want to add every changed file.

3. Now, run

Expand All @@ -42,14 +42,14 @@ Untracked files are everything else – think of *.o files, or some test data ou
Tracked files can be:
* Unmodified (you haven’t made any changes to it, relative to the last commit)
* Modified (you have edited the file since the last commit)
* Staged (the file has been committed and is ready to be pushed)
* Staged (the file has been added and is ready to be committed and then pushed)

You can make an untracked file become tracked by using git add on it.
You can make an untracked file become tracked by using `git add` on it.

4. After verifying (with git status) that all the files you want to be pushed are properly staged, commit them using
4. After verifying (with `git status`) that all the files you want to be pushed are properly staged, commit them using

```
git commit -m My first Git commit!
git commit -m "My first Git commit!"
```

Then, push the files onto the GitHub repo with
Expand Down

0 comments on commit d569852

Please sign in to comment.