GIT Commands
GIT is a LINUX-based source control program. It uses a command prompt interface, and reminds me of UNIX commands for the university mainframe in the early 90’s.
Not only does source control allow for project collaboration between developers, it functions as a save point to which one can return if an experimental programming technique proves unsatisfactory. Basically, you make a real change to a program, go ahead and check it in before making the next. Under no case should you go for more than a day without checking in, and maybe twice a day might be smarter.
Some commands I’ve already encountered:
Thus, the correct method for safely updating your changes to the branch Master would be:
git add .
git commit -a -m
git rebase Master
git c Master
git merge