Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The problem here is that <code>BankAccount</code>, <code>BuckysButtons</code>, <code>multiview</code>, <code>rotator</code> and <code>segmentedControls</code> are all git submodules, which act like independent repositories in many ways.</p> <p>If what you want to do is to run <code>git add -A .</code> in each submodule, you could do:</p> <pre><code>git submodule foreach --recursive git add -A . </code></pre> <p>And then you could create a commit in every submodule with:</p> <pre><code>git submodule foreach --recursive "git commit -m 'Committing in a submodule'" </code></pre> <p>(If you don't have other submodules nested inside those submodules, the <code>--recursive</code> option is unnecessary.)</p> <p><strong>However</strong>, I don't recommend doing this. You should carefully change into each submodule in turn, and consider how you want to update them, treating each as a standalone repository. Then only commit these new submodule versions in the main project when you have tested that the project as a whole works with those new versions of each submodule.</p> <hr> <p><strong>Update:</strong> It seems from the error message that you've quoted in the comments below that you have added these other git repositories directly rather than as submodules. This can happen if you copy another git repository into your repository and then just use <code>git add</code> to stage it, rather than adding it with <code>git submodule add &lt;REPOSITORY-URL&gt;</code>. If you really intend these to be stored as submodules, I would suggest moving them out of your repository, committing their deletion, and then add them properly as submodules with <code>git submodule add</code></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