Files
projectmycelium/docs/ops/method/current/shortcuts.md
2025-09-01 21:37:01 -04:00

948 B

Devops Shortcuts

Prerequisites

  • Use fish for shell completion
  • Use gits and pal for quicker operations

Devops Workflow Summary

  • Create a branch
    gits new development-refactoring
    
  • Commit changes and push
    • First time
      git add . && pal /commit -y && git push --set-upstream origin development-refactoring
      
    • After first time
      git add . && pal /commit -y && git push
      
  • Create PR and merge (e.g. base development branch is protected from direct push)
    gits pr create --title 'Update' --base development && gits pr merge --pr-number $(gits pr-latest)
    
  • Deploy Changed to Online App
    gits pull development && make update-dev
    
  • More info