@@ -222,32 +222,32 @@ Though there are 1000’s of articles about git, I have written this article is
222
222
223
223
### Stash
224
224
225
- #. Temporarily saves or stashes changes of working copy and and move them in later.
225
+ # Temporarily saves or stashes changes of working copy and and move them in later.
226
226
$ git stash
227
227
228
- #. Saving Stashes with the message
228
+ # Saving Stashes with the message
229
229
$ git stash save "<Stashing Message>"
230
230
231
- #. Check the Stored Stashes
231
+ # Check the Stored Stashes
232
232
$ git stash list
233
233
234
- #. Restored the changes of latest stash from stashes
235
- #. Remove the latest stash from stashes
234
+ # Restored the changes of latest stash from stashes
235
+ # Remove the latest stash from stashes
236
236
$ git stash pop
237
237
238
- #. Restored the changes of latest stash from stashes
238
+ # Restored the changes of latest stash from stashes
239
239
$ git stash apply
240
240
241
- #. Restored the changes of specific stash from stashes
241
+ # Restored the changes of specific stash from stashes
242
242
$ git stash apply <stash id>
243
243
244
- #. Remove the latest stash from stashes
244
+ # Remove the latest stash from stashes
245
245
$ git stash drop
246
246
247
- #. Remove the specific stash from stashes
247
+ # Remove the specific stash from stashes
248
248
$ git stash drop <stash id>
249
249
250
- #. Remove all stashes
250
+ # Remove all stashes
251
251
$ git stash clear
252
252
253
253
### Ignore files and folder
0 commit comments