🖥️bzr

➡️This is a command-line reference manual for commands and command combinations that you don’t use often enough to remember it. This cheatsheet explains the bzr command with important options and switches using examples.

▁ ▂ ▃ ▄ ꧁ 🔴☠ COMMANDLINE-KUNGFU WITH CHEATSHEETS ☠🔴꧂▅ ▃ ▂ ▁

#  ██████╗ ███████╗██████╗ 
#  ██╔══██╗╚══███╔╝██╔══██╗
#  ██████╔╝  ███╔╝ ██████╔╝
#  ██╔══██╗ ███╔╝  ██╔══██╗
#  ██████╔╝███████╗██║  ██║
#  ╚═════╝ ╚══════╝╚═╝  ╚═╝

# Install bazaar fastimport plugin
cd ~/.bazaar/plugins
bzr branch lp:bzr-fastimport fastimport
# you can do it manually:
# pip install 
# python setup.py build_ext -i
# mv ... ~/.bazaar/plugins
# probably you will need this patch:
# https://launchpadlibrarian.net/174264005/fix-1314771.debdiff

# How to migrate from Bazaar to git:
git init
bzr fast-export --plain . | git fast-import

# Mirror from one Subversion repository to another Subversion repository
bzr co https://repo1/proj1/trunk proj1 && cd proj1 && bzr push https://repo2/vendor/proj1/trunk
# Explanation: 
    # The commit history in repo1 will be copied to repo2.
    # The temporary Bazaar repository (proj1) will have the full history of changes.
    # The command above initializes the mirror. To update the mirror, run this script, you can schedule it to run periodically to keep the mirror up to date: cd proj1 && bzr up && bzr push
# Limitations: 
    # The author information will get lost in the process.
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

  █║▌│║█║▌★ KALI ★ PARROT ★ DEBIAN 🔴 PENTESTING ★ HACKING ★ █║▌│║█║▌

              ██╗ ██╗ ██████╗  ██████╗ ██╗  ██╗███████╗██████╗
             ████████╗██╔══██╗██╔═══██╗╚██╗██╔╝██╔════╝██╔══██╗
             ╚██╔═██╔╝██║  ██║██║   ██║ ╚███╔╝ █████╗  ██║  ██║
             ████████╗██║  ██║██║   ██║ ██╔██╗ ██╔══╝  ██║  ██║
             ╚██╔═██╔╝██████╔╝╚██████╔╝██╔╝ ██╗███████╗██████╔╝
              ╚═╝ ╚═╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═════╝

               █║▌│║█║▌ WITH COMMANDLINE-KUNGFU POWER █║▌│║█║▌

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░