Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>As <em>jeremyharris</em> said, the <a href="http://git-scm.com/documentation" rel="noreferrer">git documentation site</a> and especially the <a href="http://git-scm.com/book" rel="noreferrer">online book</a> there will get you up to speed on the basics.</p> <p>A few quick notes that might get you past your initial issue.</p> <p><code>git clone</code> command is used to pull a copy (a clone) from an existing git repository. By default it creates a folder in the folder you execute it from that has a <code>.git</code> folder in it. The folder the cloning creates is your working copy and the <code>.git</code> folder is your local copy of the repository.</p> <p><code>git clone</code> is different than most other git commands. All (or most?) other git commands require the command to be executed within the working copy folder created by the clone. (Bare repositories are a bit different since they don't have working copies, but that shouldn't apply here.) So, after doing:</p> <pre><code>$ git clone &lt;remote repo&gt; &lt;repo name&gt; </code></pre> <p>do:</p> <pre><code>$ cd &lt;repo name&gt; </code></pre> <p>to get into the working copy before executing any other commands. Executing commands outside of the working folder will get you the <code>not a git repository</code> message.</p> <p>After making a change to a file, <code>git add &lt;filename&gt;</code> adds it to the index (marked to indicate ready to commit) and <code>git commit -m '&lt;commit message&gt;'</code> will then commit the changes.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload