Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 647 Bytes

File metadata and controls

17 lines (10 loc) · 647 Bytes

GitTutorial

Make more changes! Add some new files, commit them, and push back to the master. Remember these 6 commands:

git add --all #Stage all the changes

git add (FILENAME) #Just stage one updated file

git status #Check the status to see what's changed/staged

git commit -m "Unique message." #Commit the changes

git log #See the commit history

git push origin master #Push the commits back to Github

--Push git cloned repository to your own on GitHub-- https://dev.to/dance2die/push-git-cloned-repository-to-your-own-on-github-1ili