git checkout --orphan future-master
git add -A # Add all files and commit them
git commit
git branch -D master # Deletes the master branch
git branch -m master # Rename the current branch to master
git push -f origin master # Force push master branch to github
git gc --aggressive --prune=all # remove the old files
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
/* | |
============================================================================ | |
Name : sweep_scade.c | |
Author : Thorsten Schulz <[email protected]> | |
Version : | |
Copyright : (c) 2019 with terms of EUPL | |
Description : A stream filter to purge all the _x_scade annotations in the | |
final blob before code generation. Mostly for stats. | |
============================================================================ | |
*/ |