github简单操作
Posted echoqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github简单操作相关的知识,希望对你有一定的参考价值。
github首次安装使用
在项目本地代码路径下,右击选择git bash here
git init
git add .
git commit -m "first commit" (本次提交的内容)
git remote add origin https://github.com/xxxx.git (github上创建好的仓库地址)
git push -u origin master (这一句执行的时候 可能需要输入你的 git 账号 和密码)
解决github每次提交输入账号密码
https://blog.csdn.net/wjb820728252/article/details/63803713
gitbub提交代码(已关联过远程分支地址)
git add .
git commit -m "commitment details" (每次提交尽可能概况提交的内容,后续如果有问题,方便回退代码到历史指定版本)
git push
github回退代码到历史指定版本
1 通过git命令查询历史对应不同版本的ID ,或者在github上直接查看要回退的版本对应的ID
git log --pretty=oneline
2 恢复到指定历史版本
git reset --hard ID
3 把修改推到远程服务器
git push -f -u origin master
以上是关于github简单操作的主要内容,如果未能解决你的问题,请参考以下文章
csharp C#代码片段 - 使类成为Singleton模式。 (C#4.0+)https://heiswayi.github.io/2016/simple-singleton-pattern-us