© 2022 Hashnode
We are happy to announce GitLive now works, out-of-the-box in offline mode, with any Git repository in WebStorm! Previously we only supported repositories from the big four hosting services (GitHub, G…
Hello Everyone, In this blog, We will discuss using Git and Github, various git commands, and their use. We will learn to create a repository, push code, create branches, issues, etc in giithub. So l…
Versioning software artifacts (Assemblies, NuGet, or NPM packages) has been proved to be a challenging procedure. Today, Semantic Versioning is a practice that has been on the rise over the last few y…
Solving merge conflicts is fun! - said no one ever. Nobody likes them, but it doesn’t change the fact that they are, well, part of the job. In this short post, I would like to briefly explain where th…
The series continues from the previous ones.. It's better if you go through previous two articles to understand Version Control System and Basics of Git. Git vs. GitHub So, we come to the question that we defined in our first article. We ha…
Reminder for my future self: don't forget about "this" in ts Once again, I found myself forgetting that this can lose context in JavaScript/TypeScript which results in exceptions because this is undef…
What is Git ? Git is a version control system (VCS). It runs locally in the environment. A free of cost ASSISTANT, to manage and solve the problem that we discussed. It tracks the changes that we make to our files. It takes a snapshot …
I have seen many people (beginners) asking, what is the difference between the Git and GitHub? So, I think, this needs to be clarified in a proper post. Git - Version Control System Lets understand Git... a bit. It is a Version Control …
I know blogs can be real dull, and when it involves git, it is even more boring. Ahh, I feel like taking a nap already 🤣 . Forgive my pitiful effort to make a funny blog. I'm trying, folks. But let'…
NestJS is a Node.js back-end development framework built upon Express, leveraging the power of TypeScript. In this lesson, we will learn how to create a Rest Api using NestJs. Get the source code here…
Protecting the source code is a crucial part of the software development process, especially when complex code is involved since developers must understand the issues or bugs that have been fixed. The…