Scenarios

chevron-rightcase: u made changes locally but there are already changes in git repo in githubhashtag

539 git check-ignore -v prod/VG/ERP/vgerp-master-rust/application.yml 540 git fetch origin 541 git log HEAD..origin/main --oneline 542 git stash push --include-untracked 543 git pull origin main 544 git stash pop 545 git status 546 git add . 547 git commit -m "Deploy: vg-vgerp-master-rust manifest" 548 git status 549 git push origin main

chevron-rightWorking directly on main is risky when multiple people are contributinghashtag

527 cd /e/Projects/Intelliconnect_Infrastructure_project 528

cd vg-argo-k8s/ 529

git status 530

git pull origin main 531 ll 532

cd demo-flask-argocd/ 533 ll 534 cd .. 535

git checkout -b feature/update-configmap-demo

git branch

cd demo-flask-argocd/

vim configmap.yml 541 vi kustomization.yaml 542

git add .

git commit -m "added configmap for demo flask app and updated kustomization"

git push origin feature/update-configmap-demo 5

Last updated