鼎鼎知识库
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.

01.习惯.md 493B

5 jaren geleden
12345678910111213141516171819202122
  1. > 文件命名习惯,以点.来区别各个项目。
  2. - DD.Electricity.Cloud.Domain
  3. - DD.Electricity.Cloud.Application
  4. - DD.Electricity.Cloud.Persistence
  5. - DD.Electricity.Cloud.Infrastructure
  6. - DD.Electricity.Cloud.presentation
  7. - DD.Electricity.Cloud.Wiki
  8. > git pull 习惯,上班写代码前 git pull
  9. git pull origin master
  10. > git push 习惯,下班前git push
  11. git push origin master
  12. > 提交代码习惯
  13. - git status
  14. - git add --all
  15. - git commit -m "by "
  16. - git push origin master