File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "eslint.enable" : false
2
+ "eslint.enable" : false ,
3
+ "vsicons.presets.angular" : false
3
4
}
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
163
163
* [ Backup untracked files.] ( #backup-untracked-files )
164
164
* [ List all git aliases] ( #list-all-git-aliases )
165
165
* [ Show git status short] ( #show-git-status-short )
166
+ * [ Checkout a commit prior to a day ago] ( #checkout-a-commit-prior-to-a-day-ago )
166
167
167
168
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
168
169
<!-- @doxie.inject end toc -->
@@ -1150,5 +1151,10 @@ git config -l | grep alias | cut -d '.' -f 2
1150
1151
git status --short --branch
1151
1152
```
1152
1153
1154
+ ## Checkout a commit prior to a day ago
1155
+ ```sh
1156
+ git checkout master@{yesterday}
1157
+ ```
1158
+
1153
1159
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
1154
1160
<!-- @doxie.inject end -->
Original file line number Diff line number Diff line change 484
484
},{
485
485
"title" : " Show git status short" ,
486
486
"tip" : " git status --short --branch"
487
- }
487
+ },
488
+ {
489
+ "title" : " Checkout a commit prior to a day ago" ,
490
+ "tip" : " git checkout master@{yesterday}"
491
+ }
488
492
]
You can’t perform that action at this time.
0 commit comments