心理咨询网
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.

git.txt 369B

1234567891011121314151617
  1. git init
  2. git add .
  3. git commit -m "first commit"
  4. git remote add origin http://47.120.56.77:3000/zhengxifeng/tyqngp.git
  5. git push -u origin master
  6. # 忽略所有.log文件
  7. *.log
  8. # 忽略所有编译生成的.o文件
  9. *.o
  10. # 忽略名为temp的目录及其所有内容
  11. temp/
  12. # 忽略docs目录下的所有.md文件
  13. docs/*.md
  14. # 忽略所有子目录下的.txt文件
  15. **/*.txt