git commands
Snippet
Written with a loving hand by kitt some time around 18:12 on 5 March 2019
Bunch of git commands I use frequently.
# add all the modified files to staging git add `git st | grep modified | cut -c14-120` # add the removal all the deleted files from the repo to staging git rm `git st | grep deleted | cut -c14-120`
Add new comment