\frametitle {Remotes}
  \begin{itemize}
  \item A Git repository can be configured with references to any
    number of \emph{remotes}.
  \item By default, a newly cloned repository has one remote named
    \texttt{origin} pointing to the source of the clone.
  \end{itemize}
  \begin{footnotesize}
\begin{semiverbatim}
\sh{git clone /mit/andersk/Public/git/nss_nonlocal.git}
Initialized empty Git repository in /tmp/nss_nonlocal/.git/
\sh{cat nss_nonlocal/.git/config}
\dots
[remote "origin"]
url = /mit/andersk/Public/git/nss_nonlocal.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
\end{semiverbatim}
  \end{footnotesize}
