Skip to content

izeye/hello-git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello, Git!

Commands

git format-patch

  • Create a patch:
git format-patch -n HEAD^
  • Apply the patch:
git am 0001-Add-README.md.patch

git bundle

Initial sync

  • Create a Git bundle:
git bundle create file.bundle master
  • Clone from the Git bundle:
git clone -b master file.bundle hello-git

Subsequent syncs

  • Create a Git bundle for changes 10 days ago:
git bundle create file.bundle --since=10.days master
  • Pull the changes from the Git bundle:
git pull

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors