First thing do flutter pub get
Create Branch
git checkout -b "username_feature"
git status
Check the stuff you changed
git add . #to add all changed files
git add filepath #to add specific files
Then put a commit message on the staged changes
git commit -m "Your message maybe things you added/changed"
git push origin "username_feature" #your branch