Let's Git it!
Section covering version control systems, github and basic git commands
Last updated
Section covering version control systems, github and basic git commands
Last updated
Learn about the Git versioning control system
Practice git commands
Follow this walkthrough to learn how to:
add changes
commit changes
push to remote
git add <filename>
or
git commit -m "example message"
git push origin master
git add .
(to add all changes)
Use the following command so that whenever you push, you can store your credentials and don't have to type them every single time you push.
store git credentials
git config credential.helper store
Note that nothing will appear, however next time you push and are prompted to enter your credentials they will be stored and you will no longer be prompted for them.
Alternatively you can use the following set of commands :