mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-08 04:45:55 +00:00
Update cheatsheets
This commit is contained in:
37
git-bundle
Normal file
37
git-bundle
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# git bundle
|
||||
|
||||
> Package objects and references into an archive.
|
||||
> More information: <https://git-scm.com/docs/git-bundle>.
|
||||
|
||||
- Create a bundle file that contains all objects and references of a specific branch:
|
||||
|
||||
`git bundle create {{path/to/file.bundle}} {{branch_name}}`
|
||||
|
||||
- Create a bundle file of all branches:
|
||||
|
||||
`git bundle create {{path/to/file.bundle}} --all`
|
||||
|
||||
- Create a bundle file of the last 5 commits of the current branch:
|
||||
|
||||
`git bundle create {{path/to/file.bundle}} -{{5}} {{HEAD}}`
|
||||
|
||||
- Create a bundle file of the latest 7 days:
|
||||
|
||||
`git bundle create {{path/to/file.bundle}} --since={{7.days}} {{HEAD}}`
|
||||
|
||||
- Verify that a bundle file is valid and can be applied to the current repository:
|
||||
|
||||
`git bundle verify {{path/to/file.bundle}}`
|
||||
|
||||
- Print to `stdout` the list of references contained in a bundle:
|
||||
|
||||
`git bundle unbundle {{path/to/file.bundle}}`
|
||||
|
||||
- Unbundle a specific branch from a bundle file into the current repository:
|
||||
|
||||
`git pull {{path/to/file.bundle}} {{branch_name}}`
|
||||
Reference in New Issue
Block a user