mirror of
https://github.com/denisidoro/navi
synced 2025-02-16 12:38:28 +00:00
13 lines
223 B
Text
13 lines
223 B
Text
% git
|
|
|
|
# Clear everything
|
|
git clean -dxf
|
|
|
|
# Sign all commits in a branch based on master
|
|
git rebase master -S -f
|
|
|
|
# Checkout to branch
|
|
# Change branch
|
|
git checkout <branch>
|
|
|
|
$ branch: git branch --format='%(refname:short)'
|