I had some web programming background and I am thankful for that as it would be easier for me to pull through this exercise. I was a Notepad++ user back in the days, it was simple and free to use.
Ahh, the good old days...
"Everything is awesome!" - Emmet, Lego Movie
Yikes! This is my first time hearing NodeJS! Setup is easy, but to execute it is another!
Browsersync is an add on for NodeJS, I had to use the Command Prompt and run the code, luckily Steven shared with us the code and I had to save it as a sticky note on my desktop!
It works similarly as WAMP (Windows Apache MySQL & PHP), but it is used to "preview" my work locally before it goes "live". And it instantly refreshes my page upon saving the file, how cool is that!
Code: browser-sync start --server --directory --files "**/*"
Now, Git is relatively new to me, yes I've heard of it, but to use it, no. This is my first time handling and using Git. I am also trying to understand the benefit of it besides being able to share things with the community and to use it in the future as my daily driver.
Generating of ssh key using GIT BASH
After generating, I am required to copy the generated SSH Key to the SSH Key in the Fab Academy profile keys
Adding the SSH Key
Next, I need to Clone the repo
Cloned successfully
testing to push files to Fab Academy Singapore!
Great Success
To create a new repo - git init To checkout a repo - git clone /path/to/repo To add multi files - git add file1 file 2 / git add * To add a directory – git add directoryname Once files ready git commit –m “put your comments here!” To check status - git status To add push code – git push --all or git push To pull code - git pull To remove file - git rm (result remove from Git and local file system) To stop tracking a file but still keep local copy – git rm –cached [filename]