-
Notifications
You must be signed in to change notification settings - Fork 61
Closed
Labels
Description
Currently the master branch contains only the initial commit. For the user, this could be irritating if he clones the migrated repository the first time.
Following commands would make it possible to make a specific branch to a new master
git branch -m master initialCommit (rename master branch locally to something else)
git branch -m myStreamBranch master (rename branch where migration took place to master)
git push -f origin master (push the current master and override the existing one in the repo aka .git folder)
Reactions are currently unavailable