But usually people prefer to use git bash console screen to manage git operations, its very fastest way to use git.
While you working on git ;
Git Commit operation :
1.get the differences between server and local repositorie with following command.
$ git status
2.With the following command line we can commit all the code showed at git status command.$ git commit -a -m "update reason text"3.With the following command line we can send to server all the changes with our commit text.
$ git push
First time to commit our code :
sometimes when we run commit code, it can says that I don't know who you are please set configuration with your informations.If we get this message, we can easly use following line
git config --global user.email "yourmail@domain.com"
Git pull operarations
1.get the differences between server and local repositorie with following command.
$ git status
2.get the updated code from server repositories$ git pull
Hope that it can be useful for you!