Git - Introduction and Useful commands

Git is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. Its goals include speed, data integrity, and support for distributed, non-linear workflows. 
 
# Actions 

Add All Files using Git Add

$ git add -A $ git add . (at the root of your project folder)

 # Useful Commands 

Issue: hint: core.useBuiltinFSMonitor=true is deprecated;
please set core.fsmonitor=true instead hint: Disable this message with "git config advice.useCoreFSMonitorConfig false" 

Resolution: git config --global core.fsmonitor true