git add *
git checkout -b my_new_branch
git commit -m "My risky changes"
git push --all origin
git add -u :/
Commit tree
git config --global alias.grog 'log --graph --abbrev-commit --decorate --all
--format=format:"%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(dim white) - %an%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n %C(white)%s%C(reset)"'
Add files after commit and commend
git config --global alias.commend 'commit --amend --no-edit'
Usage
git add Dockerfile
git commit -m ‘Update Bitbucket pipeline with new Docker image’
# (facepalm)
git add bitbucket-pipelines.yml
git commend