记住步骤:
1、先在github网站上新建一个项目,然后复制一下地址,后面备用https://github.com/yiwenxin518/StudyPlan.git
2、在想要同步的文件夹下右键,选择git bash here
然后初始化 git init,这个命令会创建一个.git隐藏子目录,这个目录包含初始化git仓库所有的核心文件
3、步骤分别为添加、提交、推送
git add <filename> 注意git add . 是提交所有的
git commit -m "代码提交信息"
git remote add origin https://github.com/yiwenxin518/StudyPlan.git 在本地仓库添加远程仓库链接,只需要第一次就行,后面不用输入这句
git push origin master
4、github代码修改了,同步到本地
git pull origin master
补充:git log可查看历史修改记录,q退出
git add . # 将当前目录及其子目录的所有变更文件添加到缓存
git add * # 将当前目录下的变更文件添加到缓存
git add 指定文件路径 # 将指定变更文件添加到缓存
常见操作
https://www.jianshu.com/p/b0dbc71497ff
失误处理:
1、不小心写错了远程仓库名字,,
git remote add origin git@github.com:michaelliao/learngit.git
即在这里把远程仓库名字learngit写错了,或者把github账户名michaelliao写错了
解决办法:
方法一:
git remote rm origin
git remote add origin git@github.com:Liutos/foobar.git
方法二:
git remote origin set-url <URL>
把<URL>替换成新的url地址。
方法三:
直接修改.git/config文件
常见报错
$ git push origin master -f
Connection reset by 52.74.223.119 port 22
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
解决办法:github不稳定抽风,,,多试几次就好,有的时候甚至需要试四五次