diff --git a/branching/index.html b/branching/index.html
index 266c0c1..a65fe9c 100644
--- a/branching/index.html
+++ b/branching/index.html
@@ -664,6 +664,9 @@ b7ae93b added from ruby
front of the branch that we don't want to see. For instance, if we want
to see the commits that are in the 'erlang' branch that are not in the
'master' branch, we can do erlang ^master
, or vice versa.
+ Note that the Windows command-line treats ^
as a special
+ character, in which case you'll need to surround ^master
+ in quotes.
diff --git a/remotes/index.html b/remotes/index.html index a3487c2..ec187cd 100644 --- a/remotes/index.html +++ b/remotes/index.html @@ -94,7 +94,7 @@ origin git@github.com:schacon/git-reference.git (push)If you want to share a locally created repository, or you want to take - contributions from someone elses repository - if you want to interact in + contributions from someone else's repository - if you want to interact in any way with a new repository, it's generally easiest to add it as a remote. You do that by running
git remote add [alias] [url]
. That adds[url]
under a local remote named[alias]
.