
Git
zj12november
日常学习总结
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git中.gitignore文件的使用
使用方法原创 2020-06-22 18:41:54 · 254 阅读 · 0 评论 -
GitHub中的license选择问题
原创 2020-06-22 17:51:41 · 1928 阅读 · 0 评论 -
Updates were rejected because the tip of your current branch is behind
刚创建的github版本库,在push代码时出错:$ git push -u origin masterTo git@github.com:******/Demo.git! [rejected] master -> master (non-fast-forward)error: failed to push some refs to 'git@github.com:******/Demo.git'hint: Updates were rejected because the tip of .转载 2020-05-27 23:21:28 · 222 阅读 · 0 评论 -
GitBash和Linux的常用命令
Git Bash中的命令:/pwd显示当前路径/dir显示当前文件路径/ls显示当前路径且显示当前所在的文件夹/git status用于查看项目的当前状态想要了解更多的需要的可以看下https://blog.youkuaiyun.com/zhaojie911272507/article/details/81126773Linux的命令的作用:/binbin是binary的缩写。这个目...原创 2018-08-05 11:52:35 · 2875 阅读 · 0 评论 -
git入门
检出仓库执行如下命令以创建一个本地仓库的克隆版本:git clone / path / to / repository 如果是远端服务器上的仓库,你的命令会是这个样子:git clone username @ host:/ path / to / repository工作流你的本地仓库由git维护的三棵“树”组成。第一个是你的工作目录,它持有实际文件;第二个是暂存区(Index)...原创 2018-07-20 09:51:18 · 493 阅读 · 0 评论