答案 0 :(得分:0)
git add directory1
git add directory2
git add it/can/be/only/the/subdirectory
然后确保这是你想要的
git status
然后
git commit
然后
git push
但是,要使git push
正常工作,您需要配置所谓的remote
。查看网站上的git remote --help
或文档。
通过一些教程也会有所帮助,以便将这些命令纳入您的编码习惯。
HTH