mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
14 lines
391 B
Plaintext
14 lines
391 B
Plaintext
🔧 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 doesn’t need to be Shakespeare).
|
||
|
||
|
||
git push origin main
|
||
Replace main with master if your branch is called that — check with git branch. |