Difference between revisions of "User:Cyrusty/Setting up git"

From Organic Design wiki
(Created page with "git add . # add all files for committing git commit -am "COMMIT MESSAGE" # commit the changes locally git push origin master # push changes to the server")
 
(No difference)

Latest revision as of 06:57, 9 March 2019

git add . # add all files for committing

git commit -am "COMMIT MESSAGE" # commit the changes locally

git push origin master # push changes to the server