Blogs
Manually Run Git Hooks
Sometimes you want to manually run a Git hook, like a pre-commit hook, for testing. This can be done from the shell. Navigate to the directory containing your Git repository cd /path/to/code Example directory: |- .git |— hooks |—– pre-commit |- src |— file.js |- READEME.md …
Renaming a Local and …
Sometimes you need to rename a Git branch, here are the simple commands rename a local or remote branch in Git using the command line. Updating Local Branch Switch to the local branch you want to rename git checkout <old branch name> Rename the branch by using the -m flag: git branch -m …
Becoming a Software …
In recent conversation I was asked these questions. I wanted tow also share my thoughts in writing. It’s your job to choose the least worst option - Neal Ford 0. How did your career lead you to being an Application Architect? My career path has not been a linear path. I weaved quite a bit to …