-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for permanently forwarding the correct port
- Loading branch information
1 parent
5ee0456
commit bf217bb
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,11 @@ If you wish to activate TextMate from an ssh session you can do so by copying th | |
|
||
ssh -R 52698:localhost:52698 [email protected] | ||
|
||
This can be made permanent by adding a section to your `~/.ssh/config` file | ||
|
||
Host <host> | ||
RemoteForward 52698 localhost:52698 | ||
|
||
or, if using unix sockets (available with OpenSSH v6.7 and above): | ||
|
||
ssh -R /home/user/.rmate.socket:localhost:52698 [email protected] | ||
|