赞
踩
$ git config --global user.name "runoob"
$ git config --global user.email test@runoob.com
$ git clone git://github.com/schacon/grit.git
$ git remote -v //查看当前连接地址
git add <file1> <file2> //按文件提交
2. $ git commit -m '提交' //提交暂存区文件到本地仓库中
3. $ git pull
$ git pull origin 分支Dev //命令用于从远程获取代码并合并本地的版本。
4. $ git push
$ git push origin 分支Dev
$ git branch -a //查看所有分支git
2. $ git checkout -b dev //创建并切换分支相当于
$ git branch dev //创建分支(目录不是空的,里面是master的内容)
$ git checkout dev //切换分支
3.$ git merge master //合并到本地master仓库
$ git push origin dev //推送到远程dev分支
1.$ git reset -hard "指定版本的hash值" //返回版本
git fetch --all
git reset --hard origin/master(master可修改为对应分支名)
查看用户名 :git config user.name
查看密码: git config user.password
查看邮箱:git config user.email
查看配置信息: $ git config --list
git reset --hard h
$ git remote add origin remote_url
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。