# generate repos
git init a
cd a/
echo a_file  > a_file
git add a_file
git commit -m "add a_file"
git init b
cd b/
echo b_file > b_file
git add b_file
git commit -m "add b_file"


# issue effect
$ git all status # called from repository a
 [a] 
On branch master
Untracked files:
  (use "git add <file>..." to include in what will be committed)

        b/

nothing added to commit but untracked files present (use "git add" to track)
 [b] 
On branch master
Changes not staged for commit:
  (use "git add/rm <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

        deleted:    ../b_file

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        ../a_file
        ./

no changes added to commit (use "git add" and/or "git commit -a")
