Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 468 Bytes

README_GIT.md

File metadata and controls

15 lines (11 loc) · 468 Bytes

Make sure your are up-to-date

git pull https://github.com/christopherwharrop/pasilla.git

Look to see what files you've modified and have staged for committing

git status

Add files to be committed

git add

Do the commit

git commit -m "Description of the change" # For a short message git commit # When a longer message is required

Push you commit to the repository

git push origin master