如何将不同目录中的多个文件添加到本地存储库中

时间:2018-01-08 10:18:58

标签: git github

enter image description here在此处输入图片说明

enter image description here

我想将不同目录中的多个文件添加到同一个存储库中,并将其推送到远程存储库。 但我有点困惑,有人可以帮帮我。

1 个答案:

答案 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