赞
踩
git的安装
git命令
$ git init
$ git status
红色文件是没有加入索引的文件 绿色文件是加入索引等待提交的文件$ git add file.txt
$ git commit -m "what do you do"
$ ssh-keygen -t rsa -C "123@qq.com"
- $ git config --global user.name "用户"
- $ git config --global user.email "123@qq.com"
$ git remote add origin https://gitee.com/gexingyuming/demo.git
$ git push -u origin master
$ git remote -v
$ git remote set-url origin git@gitee.com/gexingyuming/demo.git
$ git remote rm origin
$ git pull gitee master
$ git remote rename oldname newname
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。