Git

HOW to change remote’s URL in Git?

There are various scenario where you want to change the remote’s URL in your git repository. You can fire git remote set-url command to change/ update existing remote repository URL. The git remote set-url command takes two arguments: An existing remote name. For example, origin or upstream are two common choices. A new URL for the remote. For example: If you’re updating to …

HOW to change remote’s URL in Git? Read More »

WHY should you use Git?

From web developers to app developers, Git is useful to anyone who writes code or track changes to files. So what’s it all about and why should you start using it? What is Git? Git is the most commonly used version control system. Git tracks the changes you make to files, so you have a record …

WHY should you use Git? Read More »

Scroll to Top