Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.36 KB

README.md

File metadata and controls

49 lines (33 loc) · 1.36 KB

Rob's Fork of Mu2e Offline

This is the HEAD branch of my fork of Mu2e Offline https://github.com/Mu2e/Offline .

I have removed the main branch (formerly master) from this fork because it should never be used for anything and it's possible to accidentally use it. Always start new Mu2e projects by branching from the appropriate branch, usually main, of https://github.com/Mu2e/Offline .

Other branches are working branches. Some are destined for pull requests back to the Mu2e Offline repository and some are dead end working branches. At any time some might be in a non-working state. You are welcome to use any of them.

Here is what I did.

Fork the Mu2e Offline repo; clone the fork.

In the clone, make a new branch named "dummy" starting from the oldest commit in the repo.

 git checkout -b dummy 592ddf8c0b2e94920

Create README.md (this file) to tell the story.

 git add README.md
 git commit -m "First release" README.md

Remove some files so that a user cannot accidently setup the environment or build this.

 git rm setup.sh
 git rm setups.sh
 git rm SConstruct
 git rm -r bin
 git commit -m "Removed files so that people cannot accidentally setup this version." -a

Push this branch back to the GitHub fork:

 git push origin dummy

On my GitHub account, use the GUI to make dummy the default branch and delete main.