Skip to content

Instantly share code, notes, and snippets.

View MgenGlder's full-sized avatar

Kunle Oshiyoye MgenGlder

  • GitHub
  • Dearborn, Michigan
  • 17:21 (UTC -04:00)
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
test

Lorem Ipsum

Dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. new edit

@MgenGlder
MgenGlder / globalNpmExample.txt
Created May 15, 2019 12:50
Updating the npm binary location to be included inside of the global path variable so we can call things from the terminal
npm bin -g
grab that path if it doesn't exist in path
sudo nano /etc/paths
Add the new path to the bottom of this file
echo $PATH
https://stackoverflow.com/questions/3516823/whats-the-difference-between-the-index-cached-and-staged-in-git
@MgenGlder
MgenGlder / dailyJs.txt
Created August 31, 2018 16:43
Daily js updates that we can see
https://medium.com/dailyjs
@MgenGlder
MgenGlder / viewReflog
Created August 30, 2018 22:31
View git log references and what not
git log -g
@MgenGlder
MgenGlder / gitLogUnpushedCommits.txt
Created August 30, 2018 20:41
Git log unpushed commits on local working copy
git log origin/master..HEAD
@MgenGlder
MgenGlder / touch.txt
Created August 30, 2018 02:29
create a file
touch index.js
@MgenGlder
MgenGlder / trackRemoteBranch
Created August 29, 2018 15:33
Track remote branch
git fetch to get all external references
git checkout --track origin/discover