Shammer's Philosophy

My private adversaria

Git operation after modified some files

This is a continuation of Move EmacsConfig from Dropbox to GIT - Shammerism.
I modified some files getting from My GIT repository and executed following commands.

  1. git commit -v -a -m "Message about this commit"
  2. git push -u origin master

But, nothing has been changed in my remote repository.
In this case, -u option should NOT be added. Following commands are updating local and remote repository and other git environment can pull the updated resources.

  1. git commit -v -a -m "Message about this commit"
  2. git push origin master
  3. At other git environment, git pull