Changes between Version 27 and Version 28 of Internal/OpenFlow/miscUnix
- Timestamp:
- Oct 23, 2012, 7:17:09 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OpenFlow/miscUnix
v27 v28 162 162 Various odds-and-ends related to tools and workarounds in coding sessions. 163 163 == 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.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. 165 165 166 166 Here 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. … … 201 201 }}} 202 202 Your changes to `config` will be applied starting with the next the git operation you do. 203 204 Alternatively, 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 }}} 203 208 204 209 ----