You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to make development easier we should add a script that is able to check for all remote branches and make a checkout for them in seperate subdirectories. This allows us to test several things in parallel. What needs to be done:
git rev-parse &>/dev/null to check if we are in a git repo
git remote to check if a remote is configured
git fetch -q -p --all 2>&1 to fetch all branches from remote + delete old local ones
git gc --auto for garbadge collection
now we need to iterate add git branch and check them all out in subrepos
In the future we can also add another script to autogenerate PXE entries for each branch
The text was updated successfully, but these errors were encountered:
to make development easier we should add a script that is able to check for all remote branches and make a checkout for them in seperate subdirectories. This allows us to test several things in parallel. What needs to be done:
git rev-parse &>/dev/null to check if we are in a git repo
git remote to check if a remote is configured
git fetch -q -p --all 2>&1 to fetch all branches from remote + delete old local ones
git gc --auto for garbadge collection
now we need to iterate add git branch and check them all out in subrepos
In the future we can also add another script to autogenerate PXE entries for each branch
The text was updated successfully, but these errors were encountered: