Changes between Initial Version and Version 1 of DevNotes/Processeses/WebPageInstructions


Ignore:
Timestamp:
Oct 18, 2015 10:34:38 PM (9 years ago)
Author:
butler
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/Processeses/WebPageInstructions

    v1 v1  
     1Check out web pages from from !GitHub at https://github.com/SasView/sasview.github.io.  This can be done with 
     2 * Eclipse (or some other IDE) 
     3 * GUI git (like tortoiseGit for example) - this will require having valid credentials.  In principle this is not required for check out but will make checking in much simpler.  
     4 * Command line git. For this type: 
     5{{{ 
     6$ git clone https://github.com/SasView/sasview.github.io.git 
     7}}} 
     8If you already have the repo locally you just need to update the repo 
     9{{{ 
     10$ git fetch origin 
     11}}} 
     12 
     13Once the changes are made they should be staged and committed.  If using the command line: 
     14{{{ 
     15$ git commit -a -m 'commit comment' 
     16}}}  
     17 
     18 
     19Finally, the commit will need to be pushed up to !GitHub from the local repo.  Again if using the command line 
     20{{{ 
     21$ git push origin master 
     22}}} 
     23 
     24Once the !GitHub repo is updated, the website changes will automatically be live. 
     25 
     26NOTE: the above command line makes a few assumptions about your setup.  If they do not work you should look into git documentation.