Forrest logo
back to context overview

git-bundle

List of commands for git-bundle:

  • git-bundle:tldr:23c2d git-bundle: Create a bundle file of the latest 7 days.
    $ git bundle create ${filename-bundle} --since=${7-days} ${HEAD}
    try on your machine
    explain this command
  • git-bundle:tldr:3d2c1 git-bundle: Create a bundle file of the last 5 commits of the current branch.
    $ git bundle create ${filename-bundle} -${5} ${HEAD}
    try on your machine
    explain this command
  • git-bundle:tldr:766b6 git-bundle: Unbundle a specific branch from a bundle file into the current repository.
    $ git pull ${filename-bundle} ${branch_name}
    try on your machine
    explain this command
  • git-bundle:tldr:76c1c git-bundle: Create a bundle file of all branches.
    $ git bundle create ${filename-bundle} --all
    try on your machine
    explain this command
  • git-bundle:tldr:923b1 git-bundle: Create a bundle file that contains all objects and references of a specific branch.
    $ git bundle create ${filename-bundle} ${branch_name}
    try on your machine
    explain this command
  • git-bundle:tldr:9c2c5 git-bundle: Print to the standard output the list of references contained in a bundle.
    $ git bundle unbundle ${filename-bundle}
    try on your machine
    explain this command
  • git-bundle:tldr:d7738 git-bundle: Verify that a bundle file is valid and can be applied to the current repository.
    $ git bundle verify ${filename-bundle}
    try on your machine
    explain this command
back to context overview