- 配置sshkey
ssh-keygen -t rsa -C “你的邮箱”
- 验证一下是否设置成功在git bash 下输入如下命令
ssh -T [email protected]
- 配置用户名和邮箱
gitconfig –global user.name “用户名”
gitconfig –globaluser.email “邮箱”
- 更改本地路径
cd目标盘/目标文件夹
- 初始化
gitinit
- 连接远程默认仓库origin
[email protected]:用户名/仓库名
- 将远程代码文件同步到本地
git pull [email protected]:用户名/仓库名
- 本地增加文件及所有文件
gitadd文件名
- 增加本地所有文件
- 代码提交
gitcommit - 内容/注释
- 将代码更新到远程服务器上
[email protected]:用户名/仓库名
- Git status查看状态
- Git rm文件
- 更多的git命令http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html
http://www.cnblogs.com/cspku/articles/Git_cmds.html
- Git管理团队项目
http://www.cnblogs.com/schaepher/p/4933873.html
- git 中的pull request
http://blog.csdn.net/jingtiangao/article/details/52785887
时间: 2024-11-05 18:46:33