This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Workflow | |
1) Create private branch off public (remote) branch | |
2) Regularly commit to this private branch | |
3) Clean up its history (squash merge, rebase, or merge into a separate temp branch and then merge to master) | |
4) Merge to origin public (remote) branch | |
git init (Create a new local repo) | |
git remote add repo_name ~~~~~~.git (Add a remote repo as a new remote "repo_name") | |
git clone ~~~~~.git repo_name (Clone a remote repo as "repo_name") |