Here is my problem:
I used to push into github.com several folders, but two of them was empty. When i try git status, it shows me
On branch master
Changes not staged for commit:
<
use "git add<file>..." to update what will be commited>
<
use "git --chackout<file>..." to discard changes in working derictory>
<
commit or discard the untracked or modified content in submodules>
modified:app/model (modified content)
modified: app/show (modified content)
no changes added to commit (use "git add" and/or "git commit -a")
My local folders are not empty, just in remote. How can i add files from these folders into remote repo?
p.s. i tried git add -A ., git add -u, git add ., git submodule --recursive git add -A ., git submodule --recursive git commit -a -m "Initial commit" but it doesn't help.
Thanks for any help!