I can't believe that I have finished the whole Web Develop Bootcamp course . From Google Image In this blog, I shared 80 key study notes about web develop which includes frontend and backend. Every note introduces the basic concepts of certain topics, and show the screenshots of codes, and explain each process. I also shared some small project studies to implement all the related code together to make the learning more meaningful. The learning process, for me, was not easy. I have to say it was so struggle. Sometimes I couldn't get the concept about the logical which made me very confused. Sometimes the code did't work in the server even though I typed the exactly the same codes as the course did. Whenever the problem was happened, I couldn't sleep and couldn't eat.And this kind of issues had driven me crazy thousands of times. At some points, I did want to give it up. It was just so hard for me. And my goal was not to become a developer, what's...
What is Git? According to Git website , Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Basically, we can use Git to track all of changes and revert them back if we made mistakes. The version control system is a way for us to work with different versions of our code, so that we can save different features and make notes as we progress. It is also very useful for team collaboration. Six Git Command You Should Know 1. Git Init In our server, we need to create a "Git" directory and inside of "Git", we make another direcory "git_inro". Then, we add a file "app,js" in the "git_intro" folder. The first thing we need to run is "git init" . When we run git init, it will make a directory which is hidden called ".git". Wherever I run that git init command, it's going to track all of our changes. ...