Skip to main content

Posts

Showing posts from March, 2018

How to use Git and GitHub from Netbeans

As some of  you all might know Git is a popular version control tool for tracking changes in computer files and managing work among several people. GitHub is a web-based Git or version control repository and Internet hosting service. GitHub helps you to host and review code, manage projects and build software alongside millions of other developers. The whole scenario of using Git and GitHub is based on creating a repository where you can save your code. Git allows you to create a local repository on your own PC, whereas GitHub enable you to push/copy the content of your local repository to a global(remote) repository where other developers can access your code. This blog is about how to configure and use Git and GitHub from the NetBeans IDE. 1. Install Git on your PC.  You can download it from the following link . URL :  Download Git 2.Create a GitHub account.  If you already have one just sign in to that account. Go to GitHub      3...