github add remote repo
git clone <<URL to git repository>>
git config --global user.email <<your email ID>>
git config --global user.name "<<your name>>"
To see the files in a commit:
git log
git show e6f6a1e19b90d3e590a62bd08eea6e284d259995 --name-only
git status
//To add new files to repo:
git add <<file name>>
git commit -m <<"message">> <<file name>>
git push
Comments