Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
git clone ssh://ashehata@review.hpdd.intel.com:29418/fs/lustre-release
git checkout multi-rail
git fetch origin master
git merge origin/master
git push origin multi-rail

# to grab only a few patches
git checkout multi-rail
git checkout <SHA>
git push origin HEAD:multi-rail

Using local branches

Cherry-pick from a local repository. Useful when pulling features from one repository to another

Code Block
git remote add <other> /path/to/local/repo/repository.git
git fetch other

Remove the added repository

Code Block
git remote remove <other>