This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Squashes all commits ahead of dev on current branch into one | |
## Before running, ensure all working files are comitted to feature branch | |
# Start on the current state of develop | |
git checkout develop | |
# Create a new temporary working branch | |
git checkout -b feature/TICKET-0000_temp |
OlderNewer