Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

Tuesday, June 24, 2014

some of the Git command using github

link your current git folder with remote repository:

 git remote add origin https://yourusername@bitbucket.org/username/your_repo.git add .  


If git dose not track your file or it is the first time use add to add it to looking path using :

 git add .  

If you want to update the data in your repository, first you have to commit your changes and the push it:

git commit -m 'initial commit' 

if you use git shell it will prompt a text file to named your commit action. and then use push to update the repository:

 git push -u origin master   

---------------------------

To retrieve the latest version of the files:

 git pull origin master  

--------------------------

Friday, January 24, 2014

How to embed an external webpage, calendar into your page

Here is what you need to do to insert another website,calendar into your page :

html command: <iframe>

Example : Embedding your google calendar :

in order to import your calendar into the frame you need to get the your unique url from google calendar and add it as src in the iframe tag like here:
<div dir="ltr" style="text-align: left;" trbidi="on">
<iframe frameborder="0" height="600" scrolling="no" src="http://www.google.com/calendar/embed?src=vjnq447j9fr8ssclog7enrfick%40g.." style="border: 0;" width="800"></iframe><br /></div>