1. git 常用命令
. git add ——添加准备提交的文件
. git commit -m "提交描述" ——提交当前版本到git仓库
.git diff <file> 查看指定文件改变的具体内容
. git checkout <file> ——回退当前文件到前一个状态(此文件未被add操作才能成功)
. git status ——查看当前版本改动的状态
. git log / reflog ——查看提交日志
. git reset HEAD <file> —— 撤销当前文件的添加状态
. git reset --hard <版本号> ——将当前版本回退到指定的版本号的版本
2. git将本地项目push到github上自己的代码仓库
- 新建项目要存放的repository 代码仓库
- 在download和clone选项找到repository的地址,如:https://github.com/wodeai/PaymentByQrScan.git
- 打开Git Bash , cd 进入项目所在跟目录,新建一个命名与GitHub上代码仓库一样名字的文件目录,cd 进入该目录 . 键入命令:
git clone https://github.com/wodeai/PaymentByQrScan.git
将远程项目clone到本地项目目录中来,然后 复制clone的内容: .gitignore , License , README.txt 到本地项目主目录来,将存放clone内容的目录删掉 - 键入命令 : git add . --添加项目中所有的文件等待commit
接着git commit -m "第一次提交" --提交项目文件
最后git push origin master
--同步提交的内容到Github上的远程版本库
其中遇到的坑:
git push origin master 后 提示输入 username 及 password ,
即使真确的输入了GitHub官网注册的账号和密码也会显示:
Fatal: AggregateException encountered.
Username for 'https://github.com': flyneat@163.com
fatal: unable to access 'https://github.com/wodeai/PaymentByQrScan.git/': Unknown SSL protocol error in connection to github.com:443
错误:
这是因为没有事先配置Email 账号
需要先键入命令 : git config --global user.email ******@qq.com
(自己在github 上注册的email ). 配置完email 账号后 就可以正常执行 git push origin master 啦. 这样本地的项目就完整地同步到github上去啦!