Git Branch #14
This file contains 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
name: Git Branch Test | |
run-name: Git Branch | |
on: | |
push | |
jobs: | |
Fix-Html: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Create new branch | |
run: | | |
git branch Test | |
git pull | |
- name: extra commit | |
run: | | |
git pull | |
git push -u origin Test | |
touch ./aaa.aaa | |
git add ./aaa.aaa | |
git push -m "TESTTEST" | |