Changes between Version 5 and Version 6 of GitVersionControl


Ignore:
Timestamp:
11/07/17 17:05:07 (7 years ago)
Author:
lttoth@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitVersionControl

    v5 v6  
    22 
    33== Overview == 
     4=== Shared Access to Identity and Access Management Repositories === 
    45Identity and Access Management has access to three contexts in University of Alaska GitHub Repository: 
    56 * Personal (identified by UA Username) 
     
    910Within the OIT - IAM repository, there are two types of repositories, those that represent a Chef managed system and those that contain Source files. 
    1011 
     12=== Individual Repositories === 
     13In addition to OIT - IAM repositories, each user can develop and share private repositories. 
     14 
    1115== Choosing a Context == 
     16 
     17=== Choosing a shared OIT - IAM Context === 
    1218Once logged in by default, the context will be set to a user's personal repository.  A drop down button allows the user to select the desired context for IAM activities. 
    1319 
    1420[[Image(AK github context selection.png)]][[br]] 
    1521 
    16 === Identifying Chef Cookbooks versus Source Files === 
     22=== Identifying OIT - IAM Chef Cookbooks versus Source Files === 
    1723A convention has been established for identifying which repositories contain Chef cookbooks, i.e., the configuration for an entire system, or source files to run an application.  By convention, anything that is a cookbook follows the naming format of OIT-IAM/iam-<application name>-app.   
    1824 
     
    2127[[Image(AK OIT IAM repositories.png)]][[br]] 
    2228 
    23 === Contents of Chef Cookbook Repository === 
     29=== Contents of an OIT - IAM Chef Cookbook Repository === 
    2430Below is an example of a Chef Cookbook repository.  Notice a few of the keywords used to indicate standard Chef directories and files such as, recipes, kitchen.yml, metadata.rb 
    2531 
    2632[[Image(OIT IAM example github cookbook.png)]][[br]] 
    2733 
    28 === Contents of a Source File Repository === 
     34=== Contents of an OIT - IAM Source File Repository === 
    2935The source files for people, as opposed to the Chef Cookbook, contain no set pattern, other than what is needed for the application itself. 
    3036 
     
    3238 
    3339== Pulling a Repository to a Local Desktop == 
    34 Login into github.alaska.edu 
    35 Use UA Username and password to login 
    36 Check repositories for latest work  
     40The following steps are describing how to clone an individual user's repository. 
     41 
     42 * Login into github.alaska.edu 
     43 * Use UA Username and password to login 
     44 * Check repositories for latest work  
    3745Image of curent repositories 
    38 Click on desired repository to get address to clone it 
    39 Click on clone or download down arrow (copy or copy to clipboard) will copy the repository location. 
    40 Go to terminal window 
    41 Either create directory for location or if in a desired hierarchy type 
     46 * Click on desired repository to get address to clone it 
     47 * Click on clone or download down arrow (copy or copy to clipboard) will copy the repository location. 
     48 * Go to terminal window 
     49 * Either create directory for location or if in a desired hierarchy, then type 
    4250{{{ 
    4351git clone git@github.alaska.edu:serie/SelfServiceAttributes.git 
    4452}}} 
    4553 
    46 Remember to pull before any edit and push often 
     54 * Remember to pull before any edit and push often 
    4755 
    4856 
    4957 
    50