Skip to main content

Posts

Showing posts with the label Making repository

GIT

1. Installing on Windows Installing Git on Windows is very easy. The msysGit project has one of the easier installation procedures. Simply download the installer exe file from the GitHub page, and run it: To download GIT click here After it’s installed, you have both a command-line version (including an SSH client that will come in handy later) and the standard GUI. The GuI version is more user friendly and easy to use but there are so many features missing in the GUI version. So it is more useful to use the command line version of GIT which is called GIT bash. Working with GIT The Three States Now, pay attention. This is the main thing to remember about Git if you want the rest of your learning process to go smoothly. Git has three main states that your files can reside in: committed, modified, and staged. Committed means that the data is safely stored in your local database. Modified means that you have changed the file but have not committed it to your database y