forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-branch
executable file
·41 lines (30 loc) · 1 KB
/
create-branch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
# [start-readme]
#
# This script is run on a writer's machine to create an Early Access branch that matches the current docs-internal branch.
#
# [end-readme]
set -e
# Get current branch name
currentBranch=$(git rev-parse --abbrev-ref HEAD)
if [ $currentBranch == "main" ]; then
echo "You cannot run this script on the 'main' branch. Checkout a new branch first."
exit 0
fi
# Go up a directory
pushd .. > /dev/null
if [ ! -d "docs-early-access" ]; then
echo "A 'docs-early-access' directory does not exist! Run script/early-access/clone-locally first."
popd > /dev/null
exit 0
fi
# Navigate to docs-early-access
cd docs-early-access
# Check out main and update
git checkout main
git pull origin main
# Create a branch with the current docs-internal branch name
git checkout -b $currentBranch
# Go back to the previous working directory
popd > /dev/null
echo -e "\nDone! Created a branch called ${currentBranch}. Remember to commit your work in ../docs-early-access when you're ready."