$ git-exercise git:(main) git status On branch main Your branch is up to date with 'origin/main'.
Untracked files: (use "git add <file>..." to include in what will be committed) master1.txt
nothing added to commit but untracked files present (use "git add" to track)
git add & commit
1 2 3 4 5 6 7 8
$ git-exercise git:(main) ✗ git add . $ git-exercise git:(main) ✗ git commit -m "main第一次本地提交" $ git-exercise git:(main) git status On branch main Your branch is ahead of 'origin/main' by 1 commit. (use "git push" to publish your local commits)