diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-09-19 17:30:20 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-09-19 17:30:20 +0200 |
commit | 49b11b0444ec226d8d543ea88de3df099f220f42 (patch) | |
tree | b5fa1725d8eb5caa3702bea8cce1e89e2d1f6c87 /using-git.texinfo | |
parent | typo (diff) | |
download | using-git-49b11b0444ec226d8d543ea88de3df099f220f42.tar.gz using-git-49b11b0444ec226d8d543ea88de3df099f220f42.tar.bz2 using-git-49b11b0444ec226d8d543ea88de3df099f220f42.tar.xz |
add a footnote to say the git push pushes more than the branch
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'using-git.texinfo')
-rw-r--r-- | using-git.texinfo | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/using-git.texinfo b/using-git.texinfo index 60bb365..b56b313 100644 --- a/using-git.texinfo +++ b/using-git.texinfo @@ -498,7 +498,7 @@ git checkout -b BRANCH_NAME @end example After issuing this command you are located -in a new branch. The create it in the origin, +in a new branch. To create it in the origin, make a push: @example @@ -514,7 +514,8 @@ git push The @option{-u origin BRANCH_NAME} is just to initially tell which remote repository -a pushes should go to. +a pushes should go to.@footnote{It actually +also tells to not push anything else.} To switch branch use the checkout command: |