新建文档和git
1, 本地创建一个文件夹HQ
2, cd到HQ文件夹
3, git init //初始化当前目录的git
4, git remote add origin url(git 远程仓库的地址) 添加远程仓库名称.
4, git pull origin master //从远程仓库拉数据.
提交
1, git add . //提交所有改动
2, git commit -am "提交依赖库"
3, git pushgit psuh origin master //上传到远程分支
//有可能提交不成功,因为需要验证身份,
4, git config user.name "zhanglinlin"
git config user.email "you@example.com"
刷新
1, git add . //先提交自己本地的改动
2, git commit -am "更新" //提交到本地git
3, git pull origin master //刷新
网友评论