diff --git a/index.html b/index.html index 5a2f2db1..8a022709 100644 --- a/index.html +++ b/index.html @@ -117,7 +117,7 @@

add & commit

pushing changes

Your changes are now in the HEAD of your local working copy. To send those changes to your remote repository, execute
- git push origin master
+ git push -u origin master
Change master to whatever branch you want to push your changes to.

If you have not cloned an existing repository and want to connect your repository to a remote server, you need to add it with
@@ -141,7 +141,7 @@

branching

and delete the branch again
git branch -d feature_x
a branch is not available to others unless you push the branch to your remote repository
- git push origin <branch> + git push -u origin <branch>