Instructions for installing developer's tools on Ubuntu:


ITEM ACTION
GIT
SETUP
  1. Download: ubuntu.com Ubuntu server
  2. Install:
    sudo apt-get install git gitg qgit gitk gitgui
  3. Turn colors on:
    git config --global color.ui auto
  4. Include editor:
    git config --global core.editor /usr/big/geany
GIT
REMOTE
  • dev3 ( ssh -X [username]@demo.vip.gatech.edu )
  • cd /home/[username]
    git clone [username]@demo.vip.gatech.edu:/opt/git/ITS-GT.git html
    cd html
    git branch dev
  • LOCAL
    cd /var/www
    git clone [username]@demo.vip.gatech.edu:/home/[username]/html
    cd html

    [change file(s)]
    git add *
    git commit -am "first message"
    git push origin --delete dev
    git push origin HEAD:dev
  • dev3
  • cd /home/[username]/html
    git checkout master
    git merge dev
REF