We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A QUICK FYI: Git subtree to add features from one repo to another and preserve commit history, or
How to fork a repo and add a feature from a new feature branch on the fork:
cd ~/GitHub git clone https://github.com/ddkapan/COMB COMBddkapan
cd ~/GitHub/CAPLES
git subtree split -P point_counts -b point_counts
cd ~/GitHub/COMBddkapan git branch point_counts git checkout point_counts
git subtree add -P point_counts /Users/dkapan/GitHub/CAPLES point_counts --squash
Note --squash(ing) is recommended to compress the source repo history from the subtree (could have done this at first) similar to rebase.
git push --set-upstream origin point_counts
git branch -D point_counts
git status git log #etc...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A QUICK FYI:
Git subtree to add features from one repo to another and preserve commit history, or
How to fork a repo and add a feature from a new feature branch on the fork:
Note --squash(ing) is recommended to compress the source repo history from the subtree (could have done this at first) similar to rebase.
The text was updated successfully, but these errors were encountered: