Changes between Version 27 and Version 28 of Internal/OpenFlow/miscUnix


Ignore:
Timestamp:
Oct 23, 2012, 7:17:09 PM (12 years ago)
Author:
akoshibe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OpenFlow/miscUnix

    v27 v28  
    162162Various odds-and-ends related to tools and workarounds in coding sessions.
    163163== git server setup ==   
    164 A central git repository which things can be pushed to/pulled from, but no changes are directly made to, is a bare repository. These are good as central coordination/synchronization points for larger projects and/or if you work on a project from many locations. There are git commands for setting up a bare repo, but the following steps do roughly achieve the same thing.
     164A central git repository which things can be pushed to/pulled from, but no changes are directly made to, is a bare repository. These are good as central coordination/synchronization points for larger projects and/or if you work on a project from many locations.
    165165
    166166Here we assume that you have a git repo that you wish to make a bare repo from, and a host for your bare repo. The host should be running `git`, and you should have SSH access to it.
     
    201201}}}
    202202 Your changes to `config` will be applied starting with the next the git operation you do.
     203
     204Alternatively, the `--bare` flag for `git init` lets you if you start a bare repository from scratch:
     205{{{
     206 $ git init --bare my-repo.git
     207}}}
    203208
    204209----