Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p>I am afraid to loose overview of the changes performed by each developer on a daily basis.</p> </blockquote> <p>No, you won't loose that overview, and can easily measure the contribution of one collaborator (like, for instance, <a href="https://stackoverflow.com/a/4593065/6309">in this answer</a>)</p> <blockquote> <p>Can these features still be maintained? </p> </blockquote> <p>Yes: those 10-20 projects would be reunited within one parent repo, as <strong><a href="http://git-scm.com/book/ch6-6.html" rel="nofollow noreferrer">submodules</a></strong>.<br> And you can easily <a href="https://stackoverflow.com/a/20016830/6309">configure a submodule to follow a branch</a>, like its <code>master</code> branch.<br> See more on that config at "<a href="https://stackoverflow.com/a/18799234/6309">Git submodules: Specify a branch/tag</a>", and <a href="http://git-scm.com/docs/git-submodule" rel="nofollow noreferrer"><code>git submodule</code></a>.</p> <ul> <li><p>auto-update:</p> <pre><code>git submodule update --remote --init --recursive </code></pre></li> <li><p>freeze:</p> <pre><code>cd /parent/repo git add . git commit -m "Freeze all submodules SHA1" </code></pre></li> </ul> <p>As mentioned by <a href="https://stackoverflow.com/users/736079/jessehouwing">jessehouwing</a> in the comments, Visual Studio 2013 and its <a href="http://msdn.microsoft.com/en-us/library/hh850437.aspx" rel="nofollow noreferrer">native Git support</a> doesn't include yet submodules. It is <a href="http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/3606383-add-submodule-support-in-visual-studio-git-extensi" rel="nofollow noreferrer">highly requested though</a>.<br> The Git command-line remains available for those update/freeze steps using submodules.</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.
 

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