jbeardstone / rehearser

For demonstration purpose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rehearser scripts

The following branches are available:

  • main: the current branch
  • initial: extracted original algo.md file
  • step-01: First step of structuration + rewrite README.md
  • step-02: Second step of structuration
  • dev-python: python source code
  • dev-ts: typescript source code

to clone the repo

git clone https://github.com/jbeardstone/rehearser.git
# OR (this methode require some more configuration)
git clone git@github.com:jbeardstone/rehearser.git

to get the list of all branches available:

git branch -v 

to switch between branches:

git checkout <branch name> 

to merge branch into an other:

# lets create a new branch
git checkout -b new-branch
# merge dev-ts to the new-branch
git merge dev-ts

to delete a local branch

git branch --delete new-branch
# or
git branch -d new-branch

About

For demonstration purpose