sudeshim3
9/30/2019 - 11:50 AM

gitCommands

// In case files have been missed-out in previous commit this command will add the files back to it.

git add the_left_out_file
git commit --amend --no-edit


//Git command for rebase
git checkout development
git pull --rebase origin development
//if any conflicts resolve and 
git rebase --continue