Changes between Version 31 and Version 32 of Internal/OpenFlow/miscUnix
- Timestamp:
- Mar 3, 2013, 10:59:42 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OpenFlow/miscUnix
v31 v32 11 11 * process I/O redirection (`gdb`) 12 12 * fixing garbled text (`gcc`) 13 * git server setup 13 * `git` server (bare repo) setup 14 * various `git` commands 14 15 * importing non-Eclipse projects to Eclipse 15 16 [#net Network] Various networking-related things. … … 212 213 }}} 213 214 214 ==== Miscellaneous Git ops. ==== 215 * deleting branches: local - `branch -D [branchname]` remote - `push origin :[branchname]` (note the colon prepended to branch name) 216 215 == Miscellaneous Git ops. == 216 * deleting branches: local - `git branch -D [branchname]` remote - `git push origin :[branchname]` (note the colon prepended to branch name) 217 * "rewinding" to a previous commit: `git rebase -i [hash ID]^^` (note the two carets) 218 * undoing a rebase: `git reset --hard [tag]`, where [tag] is the "HEAD@{n}" key for the commit from `git reflog` 219 * cloning into a renamed directory, from another user's repo, with ssh: `git clone ssh+git://user@repolocation/repo.git [newname]` - the cloned repo will be named [newname] 220 217 221 ---- 218 222 = Networking-related odds and ends = #net … … 435 439 ---- 436 440 [[BR]] 437 ^1."Use" here is more close to " break" in this situation.^ [[BR]]438 ^2.Apparently Mac OSX carries this behavior over as well.^441 ^1."Use" here is more close to "get it limping along" in this situation.^ [[BR]] 442 ^2.Apparently Mac OSX inherits this behavior. However I don't know if the same +/-alias parameter applies.^