File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -256,13 +256,13 @@ $ git merge --no-commit --no-ff FETCH_HEAD
256
256
#### Details
257
257
```
258
258
# Add in patch mode
259
- git add -p
259
+ $ git add -p
260
260
261
261
# Add interactively
262
- git add -i
262
+ $ git add -i
263
263
264
264
# The GitHub for Mac desktop client
265
- github
265
+ $ github
266
266
```
267
267
268
268
## Stashing with precision
@@ -274,14 +274,14 @@ github
274
274
275
275
#### Details
276
276
```
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
285
285
```
286
286
287
287
## Committing Efficiencies
You can’t perform that action at this time.
0 commit comments