Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <ol> <li>How can you set up a Git repository, where people A, B and C can pull?</li> </ol> </blockquote> <p>You need to use ssh -protocol (ssh username@ipAddress), and provide ssh access to 3 people, by providing an account for them on the machine that hosts the repository (<a href="https://stackoverflow.com/questions/552121/setting-a-password-for-git-cloning/552148#552148">Source</a>). </p> <p>I recommend to provide SSH keys for your team members. Please, see <a href="https://stackoverflow.com/questions/591766/can-i-use-ssh-keys-in-something-other-than-putty-on-mac">the post</a>. This allows them to clone by running, for instance:</p> <pre><code>git clone user@machine:/path/to/repo.git </code></pre> <hr> <p><strong>A developed problem</strong></p> <blockquote> <p>How can you provide an account for 3 people?</p> </blockquote> <p>If your files must be private, I recommend you to have an account at Github which costs you a few bucks. You can also set up a repo at your own server by Gitosis.</p> <p>If your files can be open, I recommend you to use Github, since it is free for that purpose.</p> <hr> <p><strong>A more developed problem</strong></p> <blockquote> <p>How can you add an user to your Git repository?</p> </blockquote> <p>You can add an user to your team by running the following code at your Git branch</p> <pre><code>git add remote UserName ssh://ADDressToTheRepo </code></pre> <p><strong>Example of the command</strong></p> <pre><code>git add remote schacon git://github.com/schacon/ticgit.git </code></pre> <hr> <p><strong>A more-more developed problem</strong></p> <blockquote> <p>How can you add your friend's branch to your Git?</p> </blockquote> <p>Please, see my answer at <a href="https://stackoverflow.com/questions/904353/unable-to-understand-git-branch-merge-and-rebase/907799#907799">the thread</a>.</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. This table or related slice is empty.
    1. 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