MATLAB : Fourier transform
Managing files for a big software is a very difficult task. It
may consume lots of time and memory. Therefore, you need a software that can
manage the changes in files and folders and save these changes for future reference. Git is a Version
Control software that provides all these features for a programmer.
Git is a Distributed version Control System (DVCS). In DVCS clients
don’t just check out latest snapshot of the file; rather, they fully mirror the
repository, including its full history. Thus, if any server dies, and these
systems were collaborating via that server, any of the client repositories can
be copied back up to the server to restore it. This feature makes git very helpful
tool for programmer to manage their project.
When we install Git, an application called Git Bash comes with
it. It provides command line experience on operating system and support Linux
command. Bash is a popular default shell on Linux.
1.You can easily download git from the given link according
to your operating system.
link :- https://git-scm.com/downloads
2.Click on .exe file and run the installer and click on next button
3. Select the components that you need to install and click on next button.
4.Select how to use git from command line and click on next to begin installation.
5.After completion of installation process you can search for Git Bash by typing Git in search bar in your OS and run the application by clicking on respective icon.
6. When you click on Git Bash icon, following command line window open. Here you can type your command and navigate your project files and folders.
Comments
Post a Comment