Skip to content

Commit 716f3ba

Browse files
author
Jordan McCullough
committed
Remove unnecessary code-style on description elements
1 parent f18ad2d commit 716f3ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

downloads/github-git-cheat-sheet.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ Relocate and remove versioned files
116116

117117
```$ git rm [file]```
118118

119-
Deletes the `[file]` from the working directory and stages the deletion
119+
Deletes the file from the working directory and stages the deletion
120120

121121

122122
```$ git rm --cached [file]```
123123

124-
Removes the `[file]` from version control but preserves the file locally
124+
Removes the file from version control but preserves the file locally
125125

126126

127127
```$ git mv [file-original] [file-renamed]```
@@ -178,7 +178,7 @@ Lists version history for the current branch
178178

179179
```$ git log --follow [file]```
180180

181-
Lists version history for a file, including renames
181+
Lists version history for the file, including renames
182182

183183

184184
```$ git diff [first-branch]...[second-branch]```
@@ -196,7 +196,7 @@ Erase mistakes and craft replacement history
196196

197197
```$ git reset [commit]```
198198

199-
Undoes all commits after [commit], preserving changes locally
199+
Undoes all commits after `[commit]`, preserving changes locally
200200

201201

202202
```$ git reset --hard [commit]```

0 commit comments

Comments
 (0)