- Install RubyMine
sudo tar xf RubyMine-X.Y.Z.tar.gz -C /opt/
cd /opt/RubyMine-X.Y.Z/bin
./rubymine.sh
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>Data Visualization</title> | |
| <meta name="description" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| </head> | |
| <body> |
sudo tar xf RubyMine-X.Y.Z.tar.gz -C /opt/
cd /opt/RubyMine-X.Y.Z/bin
./rubymine.sh
Move to the branch you want to rename.
git branch -m new-branch or git branch -m old-branch new-branch
Set upstream for new branch.
git push --set-upstream origin new-branch
Delete old branch.
Our box is freshly hatched, virgin pixels at the prompt. I favor Ubuntu; if you use another version of linux, your commands may vary. Five minutes to go:
passwd
Change the root password to something long and complex. You won’t need to remember it, just store it somewhere secure - this password will only be needed if you lose the ability to log in over ssh or lose your sudo password.
apt-get update
| # Default all new branches to fetch and rebase - not merge | |
| git config --global branch.autosetuprebase always | |
| # Record any merge conflict resolutions and reuse them automatically | |
| git config --global rerere.enabled true | |
| # Aliases | |
| # Status | |
| git config --global alias.st "status" | |
| # Silent status |
| // find->find in files with RegEx enabled | |
| ^.*\S+.*$ | |
| // Where: | |
| c:\your_folder\,*.php,*.phtml,*.js,*.inc,*.html, -*/folder_to_exclude/* |