Github初步探讨

安装github客户端,直接通过git shell打开,进行git的命令行对自己的工程推到远程仓库。

初次推送

1.来到D:\Documents\GitHub>目录
直接把工程上传到远程仓库,是不行的!必须
D:\Documents\GitHub>git config --global user.name "你的github用户名"
D:\Documents\GitHub> git config --global user.email 你的github邮箱

2.首先在GitHub上面创建一个repository。名称随意,我这里是goodsviewpagerwithpoint
然后是切换到本地的环境下,使用cd命令切换到我们要进行提交代码的文件目录。下面就是真正的流程了。

(1)touch README.md # 就是创建一个README.md文件
(2)git init # 制作.git文件,作为隐藏文件夹帮助我们上传而存在
(3)git add . # 这里是很重要的一点,我在这里就犯了很大的错误,因为参考的时候命令是git add README.md。所以每次操作完所有的命令后发现仓库中只有一个README文件,所以就很尴尬。这里的. 意思就是将此文件夹下的所有的文件作为上传的备选项。
(4)git commit -m “goodsviewpagerwithpoint” # 制作提交准备工作,这一点很重要,这是提交的注释解释,或表示提交了什么
(5)git remote add origin https://github.com:yourAccountNumber/goodsviewpagerwithpoint.git 这里的yourAccountNumber对应你自己的github账号就可以了。然后goodsviewpagerwithpoint.git就是我们刚才创建的那个goodsviewpagerwithpoint的仓库。
注意: 这里很容易出错的,如果出现了origin has exists.那就 git remote rm origin 之后,在实现刚才的那个命令就可以了。
(6)git push -u origin master
或者git push -u origin master -f # -f 的意思就是强制进行push操作。

完成了上面的这些命令,我们就可以到浏览器上刷新我们的仓库了,如果没有意外的话,就发现我们已经顺利的将代码提交到我们的github仓库了。

修改推送

重复上面 2.(3)到2.(6)即可

遇到的问题汇总

1.Everything up-to-date:可以参考下面的这篇文章,总结的真的很好。everything up-to-date 解决方案(http://www.tuicool.com/articles/zeaQjav)
2.Branch master set up to track remote branch master:
git add . #将文件加入stage area
git commit #提交文件,同时提示输入commit message
git push -u origin master #push到远程仓库,同时设置跟踪分支,下次push的时候,直接输入git push就好了,系统会自动用本地master分支跟踪远程master分支
3.fatal: remote origin already exists. :解决办法:$ git remote rm origin
4.error:failed to push som refs to :解决办法:$ git pull origin master //先把远程服务器github上面的文件拉先来,再push 上去。

github 图片链接格式:
(http://github.com/yourname/your-repository/raw/master/images-folder/xxx.png)
yourname --- 你的帐号
your-respository --- 你的 project 名
images-folder --- 你存放图片的文件夹,如果是直接放在 project 的项目根目录的話,就可以省略這個
xxx.png --- 你的图片名
然后在 README.md 里添加:
例如:我在我的 goodsviewpagerwithpoint文件夹下一个 screenshots 目录,在该目录里有一个 Screenshot_20170403-173212.jpg 截图。那么添加链接的方式如下

![image]#(https://github.com/JackyKeke/goodsviewpagerwithpoint/blob/master/screenshots/Screenshot_20170403-173212.png) (去掉“image”后面的#即可

你可能感兴趣的:(Github初步探讨)