- have PuTTY installed
- make sure you have installed PLink as a part of the installation process.
- open an elevated command prompt
- run the following command
plink.exe -L 3307:localhost:3306 [USERNAME]@[YOURSERVER.COM]
This file contains hidden or 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
#!/bin/sh | |
# BASH PROMPT COMBO FROM CYGWIN | |
# PS1="\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ " | |
#shopt -s expand_aliases | |
# Bash | |
alias l="ls -lhaX --color=always" | |
alias ll="ls -lhaX --color=always | grep '^d' && ls -lhaX --color=always | grep '^-' && ls -lhaX --color=always | grep '^l' " | |
alias lst="stat -c '%A %a %n' *" |
- make changes then make patch BEFORE COMMITTING CHANGES
$ git diff > [project-name]-[project-version].[description].[issue-number]-[comment-number].patch
- doesn't work when adding or deleting files
- you've made changes that INCLUDE adding/deleting files, BUT NOT COMMITTED
$ git [add|rm] ...
NewerOlder