比如想把/style_sheet目录下的所有文件提交到远程git仓库, 该如何操作?
1. 切换到到该目录下;
2.暂存到本地仓库 git add ./*;
3. 提交到本地仓库 git commit -m 'xxx';
4. 提交到远程仓库 git push