作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
<分区>
要在 Windows 上使用 git bash 在 git 上提交我需要做的事情,例如:
1.git add *
2.git commit -m "Commit test"
3.git push origin master
我以这种方式提交所有更改。我只想添加特定文件(*.h 和 *.cpp)。解决方案是使用:
ad. 1.:
git add *.h
git add *.cpp
但在这种情况下,我只在当前文件夹中添加 *.h 和 *.cpp。问题是如何在一个命令中在当前文件夹和子文件夹中添加文件 *.h 和 *.cpp ?像这样的东西:
1.git add *.h and *.cpp and_in_subfolders
and then:
2.git commit -m "Commit test"
3.git push origin master
谢谢。
我是一名优秀的程序员,十分优秀!