ITEM |
ACTION |
GIT
SETUP |
- Download: ubuntu.com Ubuntu server
- Install:
sudo apt-get install git gitg qgit gitk gitgui
- Turn colors on:
git config --global color.ui auto
- 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 |
|