git使用方法


近来把wiki转到github上了,不得不折腾起git这个东西了。以下是一段时间以来的心得。好吧,我是git小白

安装


我使用archlinux,不知何时装什么把git依赖了,直接就拿来用了。若没安装应该是:

sudo pacman -S git

使用


  1. 注册github,没什么好说的,搞定ssh
  2. 照着github help create 一个repository
  3. 第一次使用时这样做,比如我是这样
    mkdir reverland.github.com
    cd reverland.github.com
    git init
    touch README
    
    把你要上传的文件保存到当前目录下,然后:
    git commit -m 'first commit'
    git remote add origin git@github.com:reverland/reverland.github.com.git
    git push -u origin master
    
    大功告成
  4. 再有新文件加入时:
    git add <newfiles> #可以用`.`代替所有文件
    git commit -m 'anything'
    git push
    
  5. 需要删除文件时:
    git rm <filenames>
    

代理


git push https://reverland@github.com/reverland/reverland.github.com.git

其他


关于git的使用方法见这里看日记学git
git中文手册(pdf)在这里下载git中文手册


2012年02月19日 星期日 13时21分00秒 2012年02月21日 星期二 17时18分03秒

blog comments powered by Disqus

Valid XHTML 1.0 Strict This page is Vim powered