注意:避免使用中文,无论是文件名称还是注释
1. 注册账号并登录,地址:https://github.com/
2.下载本地客户端,管理(pull/push)代码,地址:https://git-scm.com/download/win
注意:下载好后,将安装路径添加到系统环境变量中(教程百度)
3. 创建仓库(repository )
4. 建本地仓库
1.建仓:git init
2.添加:git add README.md
3.提交到缓存:git commit -m “first commit”
4.添加到远程仓库:git remote add origin https://github.com/yoyoketang/yoyoketang.git
5.推送:git push -u origin master
5. 更新远程master上代码
1.git status
2.git add *
3.git commit –m “updata detail”
4.git pull (同步当前分支代码)
5.git push origin master
6.初次使用可能会遇到的问题与解决方案
1.要是cmd窗口看到提示以下这两个信息
git config --global user.email johndoe@example.com
解决办法:按上面的提示,cmd窗口接着输入
git config --global user.name "这里是你的github用户名"
git config --global user.email xxx@xxx.com(你的邮箱)
2.提交到远程时候,提示:
fatal: remote origin already exists.
解决办法:删除远程git仓库
git remote rm origin
3.首次操作过程中需要登录就按提示输入账号名和密码
输入用户名
输入密码
7. 如何clone大神的代码
1.通过github官网上搜索框输入关键字,如selenium python,找到某大神的代码(或者clone自己github上的代码),点击进入,选择clone or download,复制代码地址 https://github.com/baijum/selenium-python.git
2.在本地随便建个文件夹,地址栏输入cmd打开,然后输入指令:git clone https://github.com/baijum/selenium-python.git