标签: git github
我在终端中使用以下代码行将我的文件推送到github:
Git init Git add -A Git commit -m "name" Git push origin master
如何阻止文件,请说
hello.html
要推/更新?
答案 0 :(得分:2)
在存储库中创建一个.gitignore文件,其中包含文件的相对路径。即:
.gitignore
/path/to/hello.html
有关详细信息,请参阅the manual页面。