Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 331 Bytes

git.md

File metadata and controls

13 lines (10 loc) · 331 Bytes

Git commands

echo "# cli-common-commands" >> README.md
git init
git add README.md
git commit -m "initial commit"
git remote add origin https://github.com/RensTillmann/repository.git

git add --all
git commit -m "description of commit"
git push -u origin master

git clone https://github.com/reponame/repo.git -b 3.5.1