File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 11{
2- "eslint.enable" : false
2+ "eslint.enable" : false ,
3+ "vsicons.presets.angular" : false
34}
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)`.
163163* [ Backup untracked files.] ( #backup-untracked-files )
164164* [ List all git aliases] ( #list-all-git-aliases )
165165* [ 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 )
166167
167168<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
168169<!-- @doxie.inject end toc -->
@@ -1150,5 +1151,10 @@ git config -l | grep alias | cut -d '.' -f 2
11501151git status --short --branch
11511152```
11521153
1154+ ## Checkout a commit prior to a day ago
1155+ ```sh
1156+ git checkout master@{yesterday}
1157+ ```
1158+
11531159<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
11541160<!-- @doxie.inject end -->
Original file line number Diff line number Diff line change 484484},{
485485 "title" : " Show git status short" ,
486486 "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+ }
488492]
You can’t perform that action at this time.
0 commit comments