Merge pull request #201 from Eyob-mulualem/patch-1

Update git cheat-sheets
This commit is contained in:
Julien Le Coupanec 2021-05-07 13:29:11 +02:00 committed by GitHub
commit b2e4dd2b91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -1,4 +1,5 @@
git init # initiates git in the current directory
git remote add origin https://github.com/repo_name.git # add remote reposiory
git clone <address> # creates a git repo from given address (get the address from your git-server)
git clone <address> -b <branch_name> <path/to/directory> # clones a git repo from the address into the given directory and checkout's the given branch
git clone <address> -b <branch_name> --single-branch # Clones a single branch