Skip to content

Commit

Permalink
aass
Browse files Browse the repository at this point in the history
  • Loading branch information
Pomog committed Dec 10, 2023
1 parent 465b716 commit c9871e9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions getGitUdates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ else
exit 1
fi

# Switch back to your branch (den_dev)
if git checkout den_dev; then
echo "Switched back to den_dev branch successfully"
# Switch back to your branch (yurii_dev)
if git checkout yurii_dev; then
echo "Switched back to yurii_dev branch successfully"
else
echo "Error: Failed to switch back to den_dev branch"
echo "Error: Failed to switch back to yurii_dev branch"
exit 1
fi

# Rebase your branch onto the latest changes from the local main branch
if git rebase main; then
echo "Rebased den_dev onto main successfully"
echo "Rebased yurii_dev onto main successfully"
else
echo "Error: Failed to rebase den_dev onto main"
echo "Error: Failed to rebase yurii_dev onto main"
exit 1
fi

Expand Down

0 comments on commit c9871e9

Please sign in to comment.