5 lines
87 B
Bash
5 lines
87 B
Bash
#!/bin/bash
|
|
git checkout main
|
|
git add .
|
|
git commit -m 'changes'
|
|
git push -u origin main |