Git 常用操作(一)
使用git pull文件时和本地文件冲突:
$ git stash
$ git pull
$ git stash pop stash@{0} 【还原暂存的内容】
上传项目流程:
pwd
git pull
git status
git checkout / git add
git commit -m '提交备注' Or git commit ./ -m '提交备注'
git push
切换到分支并下载代码
git checkout -b 远程仓库分支名字 origin/远程仓库分支名字
git pull
回退到上一个版本:: git reset --hard HEAD^
回退到指定的版本: git reset --hard XXXX
后悔药找commit_id : git reflog
用来记录你的每一次命令
推荐博文:
下载git分支:
http://blog.csdn.net/cgf1993/article/details/49073945
Git一系列教程:
Intellij IDEA 提交代码到远程GitHub仓库:
https://my.oschina.net/lujianing/blog/180728
git remote add origin https://github.com/lujianing/ueditor.git
git push -u origin master
如果我引用您的博文记录,没有指出,请求您的原谅。可以私信告诉我,我一定改正!
注:我写博文的目的主要是记录得失,若有什么误人子弟的地方,请多多见谅指正;