From 883163c3559079627696cf3885423422ab75cd81 Mon Sep 17 00:00:00 2001 From: sephib Date: Tue, 28 Feb 2017 09:51:54 +0200 Subject: [PATCH] Flipped create_branch example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 32ccb95..ee4b966 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ repo.auth(username="your_name", password="your_password") ```python # Create branch off master -repo.create_branch('dev', 'master') +repo.create_branch('master', 'dev') # Checkout the branch repo.switch_branch('dev')