Skip to content

Commit 5b8a84c

Browse files
author
Matthew McCullough
committed
Dollar signs indicate the prompt before Git instructions
1 parent 0f03503 commit 5b8a84c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

workbooks/github-advanced.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -256,13 +256,13 @@ $ git merge --no-commit --no-ff FETCH_HEAD
256256
#### Details
257257
```
258258
# Add in patch mode
259-
git add -p
259+
$ git add -p
260260
261261
# Add interactively
262-
git add -i
262+
$ git add -i
263263
264264
# The GitHub for Mac desktop client
265-
github
265+
$ github
266266
```
267267

268268
## Stashing with precision
@@ -274,14 +274,14 @@ github
274274

275275
#### Details
276276
```
277-
git stash save "<description>"
278-
git stash --include-untracked
279-
git stash list
280-
git stash pop <name>
281-
git stash drop <name>
282-
git stash apply
283-
git stash clear
284-
git stash -p
277+
$ git stash save "<description>"
278+
$ git stash --include-untracked
279+
$ git stash list
280+
$ git stash pop <name>
281+
$ git stash drop <name>
282+
$ git stash apply
283+
$ git stash clear
284+
$ git stash -p
285285
```
286286

287287
## Committing Efficiencies

0 commit comments

Comments
 (0)