Git : Steps to take after getting a sign off in code review branch

Steps to take after getting a sign off in code review branch.  feature/masquerading (say)

— Go back to master

  • [feature/masquerading]> git checkout master

— get latest code from master

  • [master]> git pull origin master
  • [master]> git checkout feature/masquerading

— rebase with master

  • [feature/masquerading]> git rebase master
  • [feature/masquerading]> git add readconfigapp2/Program.cs
  • [feature/masquerading]> git rebase –continue
  • [feature/masquerading]> git checkout master

— merge and push master

  • [master]> git merge feature/masquerading
  • [master]> git push origin master

— delete CR branch

  • [master]> git branch -d feature/masquerading
  • [master]> git push origin –delete feature/masquerading

Azure Machine Learning : Model Retraining

References:

  1. https://azure.microsoft.com/en-us/documentation/articles/machine-learning-retrain-models-programmatically/
  2. https://azure.microsoft.com/en-us/blog/retraining-and-updating-azure-machine-learning-models-with-azure-data-factory/
  3. https://gallery.cortanaanalytics.com/Tutorial/No-code-Batch-Scoring-and-Retraining-1
  4. https://azure.microsoft.com/en-us/documentation/articles/machine-learning-consume-web-services/