Skip to main content

Home/ learning-git/ Group items tagged pro git

Rss Feed Group items tagged

Daniel Gregoire

Pro Git - Git's Little Bundle of Joy - 0 views

  • git clone repo.bundle -b master repo
  • $ git log --oneline 71b84da last commit - second repo c99cf5b fourth commit - second repo 7011d3d third commit - second repo 9a466c5 second commit b1ec324 first commit
  • $ git bundle create repo.bundle master
  • ...2 more annotations...
  • $ git log --oneline master ^9a466c5
  • $ git bundle create commits.bundle master ^9a466c5
  •  
    Pro Git entry on git bundles (which are amazing). +1 for having the extra command-line parameter necessary to get the initial cloning of a bundle to work. git clone [URL] -b master [DIR]
1 - 2 of 2
Showing 20 items per page