DEV Community

Discussion on: Git Concepts I Wish I Knew Years Ago

Collapse
 
oneguycoding profile image
Steeve McCauley

Sometimes if I want to move some work from one location to another without creating a remote branch I diff into a file and then apply the file on the other end,

git diff > /var/tmp/foo.diff
rsync -av /var/tmp/foo.diff remote:/var/tmp
ssh remote
git apply /var/tmp/foo.diff