commit changes to a repository

  1. depending on what you're doing, you may find using github or gitlabs easier. however if for some reason you need to do it via terminal, here is a guide. if you have not already you'll need to install git
  2. open up your terminal
  3. make menuconfig
  4. for each file do git add [file] where [file] is the path to the changed file
  5. git commit -m "put your message here"
  6. git push

[source]