
git
疯子vs年华
帅的逼真,菜的真实!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git设置用户名和密码 以及 关联远程仓库
Command line instructions Git global setup git config --global user.name "username" git config --global user.email "email" Create a new repository git clone [email protected] cd 100 touch READM...原创 2020-02-24 11:47:36 · 3874 阅读 · 0 评论 -
git 基础详解及基本操作 ---------- 一篇文章,教你学会Git
一篇文章,教你学会Git 在日常工作中,经常会用到Git操作。但是对于新人来讲,刚上来对Git很陌生,操作起来也很懵逼。本篇文章主要针对刚开始接触Git的新人,理解Git的基本原理,掌握常用的一些命令。 一、Git工作流程 以上包括一些简单而常用的命令,但是先不关心这些,先来了解下面这4个专有名词。 Workspace:工作区 Index / Stage:暂存区...转载 2020-02-19 16:06:17 · 686 阅读 · 0 评论 -
git 回退版本基本命令
GIT常用命令备忘:http://stormzhang.com/git/2014/01/27/git-common-command/Git远程操作详解 :https://microzz.com/2017/05/06/git/一篇文章,教你学会Git : https://juejin.im/post/599e14875188251240632702 1. git log 定义:该命...原创 2020-02-19 16:01:01 · 1558 阅读 · 0 评论 -
git 代码提交---多人开发同一个分支
本地修改 git stash 暂存 git pull origin branchname git stash pop 暂存内容恢复 # 有可能修改冲突 git add . git commit -m "" git push origin branchname # 提交记录一次 --------------- git pull origin branchname 本地修改 git add ...原创 2019-12-30 15:49:18 · 3302 阅读 · 0 评论 -
git 基于某个分支进行创建
1、拷贝源代码 git clone git@git地址 cd 项目目录 2、根据已有分支创建新的分支 git checkout -b yourbranchname origin/oldbranchname 3、推送到git git push originyourbranchname 4、 git 常用命令 配置账户 git config --global use...原创 2019-12-02 18:26:26 · 1345 阅读 · 0 评论