2018-03-31
这边是一些常用的 git 指令,常用就会自然记起来,不用硬背,你可以在遇到问题的时候再回来看这篇。
存档:
最一开始的时候要先执行存档:
cd 你的专案资料夹名称
git init
git add .
git commit -m "对于修改部分的简要叙述"
新增一个分支:
git checkout -b 你想取的分之名称
这样你的存档会自动被保留在这个分支里。
如果不小心做烂了,可以直接切回上一个分支去做。
切换分支:
git checkout 你想要切换到的分支名称
举例来说,假设你从01开始做,做到02的时候烂掉了
你可以 git checkout 01 回到01再重新开始做
那这个烂掉的02要怎么办呢?虽然你可以产生另一个新的02-1,但还是建议把错误的删除掉,这样才不会做到最后变得乱七八糟的。
删除掉brach的方法:
先离开你要删除的分支,接着执行 git branch -d 你要删除的分支名称
就可以了。
当然,还可以回撤:先git log查看最近提交的历史版本,记住版本号前几位。然后git reset --hard XXXX
下面是用GitHub时会遇到的命令:
We recommend every repository include a README, LICENSE, and .gitignore.
…or create a new repository on the command line
echo "# suggestotron" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/lcf33/suggestotron.git
git push -u origin master
…or push an existing repository from the command line
git remote add origin https://github.com/lcf33/suggestotron.git
git push -u origin master
…or import code from another repository
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.