码迷,mamicode.com
首页 > 其他好文 > 详细

Git常用的基础指令

时间:2018-05-10 01:03:27      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:mkdir   remote   工作   online   rem   指定   app   指令   版本库   

  1. 创建新的版本库

    $ mkdir foldername

  2. 显示当前目录路径

    $ pwd

  3. 设置当前目录为Git仓库

    $ init

  4. 添加文件到仓库

    $ git add file

  5. 再当前仓库提交文件

    $ git commit -m "描述"

  6. 查看历史记录

    $ git log

  7. 查看历史版本

    $ git log --pretty=online

  8. 回退版本

    $ git reset --hard HEAD^

    $ git reset --hard HEAD~100

  9. 参看文件内容

    $ cat file

  10. 记录命令

    $ git reflog

  11. 查看工作区状态

    $ git status

  12. 查看工作区和版本库里面最新版文件的区别

    git diff HEAD --file

  13. 丢弃工作区的修改

    $ git checkout --file

  14. 撤销暂存区的修改

    $ git reset HEAD file

  15. 删除文件

    $ rm file

  16. 从版本库删除文件

    $ git rm file

  17. 创建远程仓库

    以github为例

    $ git remote add origin git@github.com:你的用户名/项目名称

  18. 第一次上传代码到远程仓库

    $ git push -u origin master

  19. 推送新的修改

    $ git push origin master

  20. 从远程仓库clone到本地

    $ git clone git@github.com:用户名/项目名称

  21. 创建并切换到新创建的分支

    $ git checkout -b branchname

  22. 查看当前分支

    $ git branch

  23. 删除分支

    $ git branch -d branchname

  24. 切换分支

    $ git checkout branchname

  25. 合并指定分支到当前分支

    $ git merge 指定分支

  26. 普通模式合并分支

    $ git merge --no-ff -m "描述" branchname

  27. 储存工作区

    $ git stash

  28. 查看工作区列表

    $ git stash list

  29. 恢复工作列表

    $ git stash apply

  30. 删除工作列表

    $ git stash drop

  31. 恢复并删除列表

    $ git stash pop

  32. 强制删除没有合并过的分支

    $ git branch -D branchname

  33. 查看远程仓库

    $ git remote -v

Git常用的基础指令

标签:mkdir   remote   工作   online   rem   指定   app   指令   版本库   

原文地址:https://www.cnblogs.com/don1343/p/9017499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!