You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314151617 |
- git init
- git add .
- git commit -m "first commit"
- git remote add origin http://47.120.56.77:3000/zhengxifeng/tyqngp.git
- git push -u origin master
-
-
- # 忽略所有.log文件
- *.log
- # 忽略所有编译生成的.o文件
- *.o
- # 忽略名为temp的目录及其所有内容
- temp/
- # 忽略docs目录下的所有.md文件
- docs/*.md
- # 忽略所有子目录下的.txt文件
- **/*.txt
|