newtemplate

<- back to DataMeet Pune main page

newtemplate

new website designs, templates explored and hammered out here.

Testing themes

Knight

Onepage

Initation log

$ git pull --rebase https://github.com/datameet-pune/newtemplate.git master
From https://github.com/datameet-pune/newtemplate
 * branch            master     -> FETCH_HEAD
First, rewinding head to replay your work on top of it...
Applying: First commit

$ git add .
$ git commit -m "First commit"
On branch master
nothing to commit, working directory clean

$ git push origin master
Username for 'https://github.com': answerquest
Password for 'https://answerquest@github.com': 
Counting objects: 169, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (167/167), done.
Writing objects: 100% (169/169), 16.12 MiB | 53.00 KiB/s, done.
Total 169 (delta 18), reused 0 (delta 0)
remote: Resolving deltas: 100% (18/18), done.
To https://github.com/datameet-pune/newtemplate.git
   815f710..9bee84a  master -> master

Clarifications on local-to-remote syncing

Subsequent changes, commits to push up to github

$ git add .
$ git commit -m "explanation"
$ git push origin master

If repo has been changed online, and you want your local folder to sync with it

$ git pull origin master