From: Spaceman Date: Sat, 20 Nov 2010 22:29:00 +0000 (+0000) Subject: fixed some typos X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6ff928df5e7a670d6ec00505aba9a5356c575a06;p=xonotic%2Fxonotic.wiki.git fixed some typos (Commit created by redmine exporter script from page "Git" version 18) --- diff --git a/Git.textile b/Git.textile index a1b6efe..b30323f 100644 --- a/Git.textile +++ b/Git.textile @@ -16,7 +16,7 @@ The current structure looks as follows: |/|git://git.xonotic.org/xonotic/xonotic.git| |/bocc|git://git.xonotic.org/xonotic/bocc.git| |/darkplaces|git://git.xonotic.org/xonotic/darkplaces.git| -|/mediasource|git://git.xonotic/xonotic/mediasource.git| +|/mediasource|git://git.xonotic.org/xonotic/mediasource.git| |/netradiant-xonoticpack|git://git.xonotic.org/xonotic/netradiant-xonoticpack.git| |/netradiant|git://git.xonotic.org/xonotic/netradiant.git| |/data/xonotic-data.pk3dir|git://git.xonotic.org/xonotic/xonotic-data.pk3dir.git| @@ -37,7 +37,7 @@ Let's assume your name is me, your branch will be called feat There are several ways of creating a branch: You can simply create it by doing this from the xonotic directory and selecting where to branch:
./all branch me/feature1
-This will create the branch locally, nothing else. It will not checkout the branch. You can do this now: +This will create the branch locally and nothing else. It will not checkout the branch. You can do this now with:
git checkout me/feature1
Another possibility would be to checkout your base, and then use git checkout -b me/feature1. This is usually nice if you already are on your base branch because it is a single command. @@ -91,7 +91,7 @@ h2. Merging and rebasing In git you have two ways of combining two branches: You can either merge them, which does exactly what its name suggests: it merges the commits together. Or you can rebase the branch. -Rebasing means that all your changes will be put at the end. This works by first collecting and removing all your changes, then replacing your branch with the base branch, then applying all your changes to it. Whenever something failes to apply you'll be asked to fix it, and then issue a git rebase --continue +Rebasing means that all your changes will be put at the end. This works by first collecting and removing all your changes, then replacing your branch with the base branch, then applying all your changes to it. Whenever something fails to apply you'll be asked to fix it, and then issue a git rebase --continue * Merging master into me/feature1:
git checkout me/feature1
 git merge master