git 常用命令

将项目从服务器上克隆下来:git clone username@192.168.0.1:/projects/projects_name (此时会要求输入密码)

更新项目:git pull

提交修改(本地git库):git commit -m 'message for modify files' ./

提交到服务器:git push

git要做类似这样的配置:

git config --global user.name "username"
git config --global user.email "username@gmail.com"
git config --global core.editor "vim"

使用Git管理源代码:http://www.ibm.com/developerworks/cn/linux/l-git/

Git使用指南:httP://www.linuxgem.org/user_files/linuxgem/Image/git-tutor.pdf

posted @ 2011-06-20 16:29  nodot  阅读(352)  评论(1编辑  收藏  举报