Push to remote
Push to remote repository
Make a new commit
git commit -am "second file modified"[master a0d9ab9] second file modified
1 file changed, 1 insertion(+), 1 deletion(-)Check the status and log
git statusOn branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)git log --onelinea0d9ab9 (HEAD -> master) second file modified
c7d349f (origin/master) hello modified again
4d7bd7f hello modified
299930d second file added
b1e291c initial contentbMake another new commit
Push the commits
Last updated