git log --diff-filter=D --summary | grep delete
git log --all -- some/path/to/deleted.file
git checkout shaofthecommitthatdeletedthefile^ -- some/path/to/deleted.file
git log --diff-filter=D --summary | grep delete
git log --all -- some/path/to/deleted.file
git checkout shaofthecommitthatdeletedthefile^ -- some/path/to/deleted.file
| //npm.pkg.github.com/:_authToken=PA-TOKEN | |
| @idealo:registry=https://npm.pkg.github.com | |
| # C | |
| - GCE | |
| # F | |
| - ACF | |
| # Am | |
| - ACE | |
| # G | |
| - GBD | |
| # Em | |
| - GBE |
| ### if you are not making mistakes then you are not doing anything. | |
| - Johan Wocden | |
| ### The best way tp predict your future is to create it. | |
| - ? | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| brew update | |
| brew install nvm | |
| mkdir ~/.nvm | |
| vim ~/.bash_profile | |
| In your .bash_profile file (you may be using another file, according to your shell), add the following : export NVM_DIR=~/.nvm . source $(brew --prefix nvm)/nvm.sh | |
| source ~/.bash_profile | |
| echo $NVM_DIR | |
| nvm install 11.0.0 |
Short blurb about what your product does.
One Paragraph of project description goes here, there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)
| # misc | |
| .DS_Store | |
| .env | |
| logs/* | |
| !.gitkeep | |
| # Eclipse | |
| .classpath | |
| .project |
| var time = new Date(); | |
| console.info(time.toUTCString()); | |
| time.setMinutes(time.getUTCMinutes() - 60); | |
| console.info(time.toUTCString()); | |
| console.info(time.getUTCFullYear() + '-' + (time.getMonth() + 1) + '-' + time.getUTCDate() + ' ' + time.getUTCHours() + ':' + time.getUTCMinutes() + ':' + time.getUTCSeconds()); |