Tuesday 13 December 2016

Practice Python skills

Client/Server interaction via Socket


Git Notes

GIT STATES:
Working Directory <==> Staging <==> Repository (.git folder) <==> Remote
COMMANDS
#git init .
#git status
#git add . (or file names)
#git log
#git show
#git ls-files
#git commit -am “Commit comments go here” –> Combine express commit and add files to staging age
#git commit -m “Commit comments go here”
#git config –global user.email “”
#git config –global user.name “”
#git config –global color.ui auto –> show color
#git config –global alias.hist “log –oneline –graph –decorate –all”