Files
BetterSEQTA-Plus/Push Procedure.txt
T
2025-06-02 19:10:52 +09:30

14 lines
391 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
🔧 Step-by-step in command prompt:
Check the status of your changes:
git add .
This adds all the changed files. If you only want specific files, you can do git add filename.
git commit -m "commit message here"
Write something descriptive (but it doesnt need to be Shakespeare).
git push origin main
Replace main with master if your branch is called that — check with git branch.