git clone
: to download a new repository
cd
to your repositorygit fetch
: to get newest version- Coding, or changing files
git status
to see the current modified/delete filesgit add .
to added all modified/delete filesgit commit -m "summary"
: to add commit "summary" to all your added filesgit push
: push the commit to the remote github- 👍 emoji cheating sheet: https://www.webpagefx.com/tools/emoji-cheat-sheet/
Remember to push all your work before you leaving the desktop, that could reduce the conflicts when cooperate with peers