Skip to content
Zhamri Che Ani edited this page Nov 14, 2017 · 3 revisions

MyClass-Git wiki!


Example:

How to clone a repo?

$ git clone https://github.com/zhamri/MyClass-Git.git

How to push a file?

$ cd MyClass-Git
$ echo "# This is a testing." >> README.md
$ git add README.md
$ git commit -m "Initial commit"
$ git push -u origin master